mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
update 0x61地锁添加日志
This commit is contained in:
@@ -94,7 +94,11 @@ public class GroundLockDataUploadHandler extends AbstractHandler{
|
||||
log.info("0x61地锁数据,车位锁状态:升锁到位状态");
|
||||
if (StringUtils.equals(parkingStatus, "00")) {
|
||||
log.info("0x61地锁数据,车位锁状态: 升锁到位状态, 车位状态: 无车辆");
|
||||
raiseTheGroundLock(pileSn, connectorCode);
|
||||
try {
|
||||
raiseTheGroundLock(pileSn, connectorCode);
|
||||
}catch (Exception e) {
|
||||
log.error("升锁逻辑error,", e);
|
||||
}
|
||||
} else {
|
||||
log.info("0x61地锁数据,车位锁状态: 升锁到位状态, 车位状态: 停放车辆");
|
||||
}
|
||||
@@ -104,7 +108,11 @@ public class GroundLockDataUploadHandler extends AbstractHandler{
|
||||
log.info("0x61地锁数据,车位锁状态: 降锁到位状态, 车位状态: 无车辆");
|
||||
} else {
|
||||
log.info("0x61地锁数据,车位锁状态: 降锁到位状态, 车位状态: 停放车辆");
|
||||
lowerTheGroundLock(pileSn, connectorCode);
|
||||
try {
|
||||
lowerTheGroundLock(pileSn, connectorCode);
|
||||
}catch (Exception e) {
|
||||
log.error("降锁逻辑error,", e);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
log.info("0x61地锁数据,车位锁状态:未到位状态");
|
||||
|
||||
Reference in New Issue
Block a user