联联平台添加停车场库编号字段

This commit is contained in:
Lemon
2023-08-09 09:29:55 +08:00
parent 2ff37b957b
commit 0b15319e4a
5 changed files with 19 additions and 1 deletions

View File

@@ -120,6 +120,9 @@ public class PileStationInfoServiceImpl implements IPileStationInfoService {
if (StringUtils.isNotBlank(pileStationInfo.getQrcodePrefix())) {
vo.setQrcodePrefix(pileStationInfo.getQrcodePrefix());
}
if (StringUtils.isNotBlank(pileStationInfo.getParkingNumber())) {
vo.setParkingNumber(pileStationInfo.getParkingNumber());
}
vo.setMerchantAdminName(pileStationInfo.getStationAdminName());
vo.setStationStatus(Integer.parseInt(pileStationInfo.getStationStatus()));
vo.setStationType(pileStationInfo.getStationType());

View File

@@ -112,6 +112,11 @@ public class PileStationVO {
*/
private String stationLat;
/**
* 停车场库编号
*/
private String parkingNumber;
/**
* 建设场所
*/