地锁列表新增车位号字段

This commit is contained in:
Lemon
2023-09-05 09:43:19 +08:00
parent f1f6c10024
commit 39e0463d35
4 changed files with 14 additions and 0 deletions

View File

@@ -776,6 +776,7 @@ public class PileBasicInfoServiceImpl implements IPileBasicInfoService {
}
lockInfoList.add(GroundLockInfoVO.LockInfo.builder()
.connectorCode(pileConnectorInfoVO.getPileConnectorCode())
.parkNo(pileConnectorInfoVO.getParkNo())
.lockStatus(parkingLockStatus)
.parkingStatus(data.getParkingStatus())
.build());

View File

@@ -43,6 +43,11 @@ public class GroundLockInfoVO {
*/
private String connectorCode;
/**
* 车位号
*/
private String parkNo;
/**
* 地锁状态
*/