mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 预约充电记录
This commit is contained in:
@@ -65,7 +65,7 @@ public class ReservationChargingStartupResultHandler extends AbstractHandler{
|
||||
startIndex += length;
|
||||
length = 17;
|
||||
byte[] vinCodeByteArr = BytesUtil.copyBytes(msgBody, startIndex, length);
|
||||
String vinCode = BytesUtil.bcd2Str(vinCodeByteArr);
|
||||
String vinCode = YKCUtils.parseVin(vinCodeByteArr); // 解析vin
|
||||
|
||||
// 启动结果 0x00失败 0x01成功
|
||||
startIndex += length;
|
||||
|
||||
@@ -475,7 +475,7 @@ public class TransactionRecordsRequestHandler extends AbstractHandler {
|
||||
startIndex += length;
|
||||
length = 17;
|
||||
byte[] vinCodeByteArr = BytesUtil.copyBytes(msgBody, startIndex, length);
|
||||
String vinCode = BytesUtil.ascii2Str(vinCodeByteArr);
|
||||
String vinCode = YKCUtils.parseVin(vinCodeByteArr); // 解析vin
|
||||
|
||||
/**
|
||||
* 交易标识
|
||||
|
||||
Reference in New Issue
Block a user