evcs cd req in should be working

This commit is contained in:
ZZ 2021-09-26 17:40:29 +08:00
parent 2962c59d46
commit 1526776971

View File

@ -8,6 +8,41 @@ public class ChargingStationDto {
private Set<String> piles;
private Long rateModelId;
private String operatorId;
private Double lat;
private Double lng;
private Long type;
private Long construction;
private String areaCode;
public Double getLat() {
return lat;
}
public void setLat(Double lat) {
this.lat = lat;
}
public Double getLng() {
return lng;
}
public void setLng(Double lng) {
this.lng = lng;
}
public Long getType() {
return type;
}
public void setType(Long type) {
this.type = type;
}
public Long getStationId() {
@ -49,4 +84,24 @@ public class ChargingStationDto {
this.operatorId = operatorId;
}
public Long getConstruction() {
return construction == null ? 10 : construction;
}
public void setConstruction(Long construction) {
this.construction = construction;
}
public String getAreaCode() {
return areaCode;
}
public void setAreaCode(String areaCode) {
this.areaCode = areaCode;
}
}