evcs cd req in should be working
This commit is contained in:
parent
2962c59d46
commit
1526776971
@ -8,6 +8,41 @@ public class ChargingStationDto {
|
|||||||
private Set<String> piles;
|
private Set<String> piles;
|
||||||
private Long rateModelId;
|
private Long rateModelId;
|
||||||
private String operatorId;
|
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() {
|
public Long getStationId() {
|
||||||
|
|
||||||
@ -49,4 +84,24 @@ public class ChargingStationDto {
|
|||||||
this.operatorId = operatorId;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user