mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
add 后管推送站点信息到联联平台
This commit is contained in:
@@ -25,6 +25,12 @@ public class ThirdPartySettingInfo extends BaseEntity {
|
||||
@Excel(name = "对接类型", readConverterExp = "1=-联联平台")
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 对接平台url地址
|
||||
*/
|
||||
@Excel(name = "url地址")
|
||||
private String urlAddress;
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
@@ -82,6 +88,14 @@ public class ThirdPartySettingInfo extends BaseEntity {
|
||||
return type;
|
||||
}
|
||||
|
||||
public String getUrlAddress() {
|
||||
return urlAddress;
|
||||
}
|
||||
|
||||
public void setUrlAddress(String urlAddress) {
|
||||
this.urlAddress = urlAddress;
|
||||
}
|
||||
|
||||
public void setStationId(Long stationId) {
|
||||
this.stationId = stationId;
|
||||
}
|
||||
@@ -143,6 +157,7 @@ public class ThirdPartySettingInfo extends BaseEntity {
|
||||
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
|
||||
.append("id", getId())
|
||||
.append("type", getType())
|
||||
.append("urlAddress", getType())
|
||||
.append("stationId", getStationId())
|
||||
.append("operatorId", getOperatorId())
|
||||
.append("operatorSecret", getOperatorSecret())
|
||||
|
||||
Reference in New Issue
Block a user