From 7492cf4e8c2426e70c467e348908fee0f17d49b3 Mon Sep 17 00:00:00 2001 From: Guoqs <123@jsowell.com> Date: Mon, 16 Dec 2024 16:58:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E6=9E=900x15=20=E5=85=85=E7=94=B5?= =?UTF-8?q?=E6=8F=A1=E6=89=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/core/domain/ykc/device2platform/Data0x15.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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;