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; } }