puzhibing
2025-04-25 0dcba4fd1cb536ab426622e31213d8a0194449ff
ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/UPExgMsgHistoryLocation.java
@@ -56,6 +56,7 @@
    * 解析报文
    */
   public UPExgMsgHistoryLocation decode(UPExgMsg exgMsg) {
      try {
      byte[] data = exgMsg.getData();
      ByteBuf byteBuf = Unpooled.wrappedBuffer(data);
      this.vehicleNo = exgMsg.getVehicleNo();
@@ -68,6 +69,9 @@
         gnssData.add(new GnssData().decode(byteBuf));
      }
      this.gnssData = gnssData;
      }catch (Exception e){
         e.printStackTrace();
      }
      return this;
   }
}