diff --git a/jsowell-common/src/main/java/com/jsowell/common/core/domain/ykc/device2platform/Data0x15.java b/jsowell-common/src/main/java/com/jsowell/common/core/domain/ykc/device2platform/Data0x15.java index 600e22dc0..84fce7174 100644 --- a/jsowell-common/src/main/java/com/jsowell/common/core/domain/ykc/device2platform/Data0x15.java +++ b/jsowell-common/src/main/java/com/jsowell/common/core/domain/ykc/device2platform/Data0x15.java @@ -99,7 +99,7 @@ public class Data0x15 extends YKCBaseMessage { /** * BMS 电池组产权标识 (<0>: =租赁; <1>: =车自有) */ - private String bmsPropertyIdentificationByteArr; + private String bmsPropertyIdentification; /** * BMS 预留位 @@ -198,7 +198,8 @@ public class Data0x15 extends YKCBaseMessage { // BMS 电池组产权标识 (<0>: =租赁; <1>: =车自有) startIndex += length; length = 1; - byte[] BMSPropertyIdentificationByteArr = BytesUtil.copyBytes(messageBytes, startIndex, length); + byte[] bmsPropertyIdentificationByteArr = BytesUtil.copyBytes(messageBytes, startIndex, length); + this.bmsPropertyIdentification = BytesUtil.bin2HexStr(bmsPropertyIdentificationByteArr); // BMS 预留位 startIndex += length;