mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
站点新增 停车费率描述字段
This commit is contained in:
@@ -85,6 +85,12 @@ public class AMapStationInfo {
|
||||
@JsonProperty(value = "StationStatus")
|
||||
private Integer stationStatus;
|
||||
|
||||
/**
|
||||
* 停车费率描述
|
||||
*/
|
||||
@JsonProperty(value = "ParkFee")
|
||||
private String parkFee;
|
||||
|
||||
/**
|
||||
* 营业状态
|
||||
* 0:完全对外
|
||||
|
||||
@@ -163,6 +163,10 @@ public class AMapServiceImpl implements AMapService {
|
||||
aMapInfo.setOperatorName(Constants.JSOWELL);
|
||||
aMapInfo.setStationName(stationInfo.getStationName());
|
||||
aMapInfo.setCountryCode(stationInfo.getCountryCode());
|
||||
if (StringUtils.isNotBlank(stationInfo.getParkFeeDescribe())) {
|
||||
// 停车费率描述
|
||||
aMapInfo.setParkFee(stationInfo.getParkFeeDescribe());
|
||||
}
|
||||
aMapInfo.setAreaCode(stationInfo.getAreaCode());
|
||||
aMapInfo.setServiceTel(stationInfo.getStationTel());
|
||||
aMapInfo.setAddress(stationInfo.getAddress());
|
||||
|
||||
Reference in New Issue
Block a user