后管页面 新增 修改充电桩别名

This commit is contained in:
Lemon
2023-08-08 14:37:55 +08:00
parent 2634b8b3c7
commit 129374117f
4 changed files with 66 additions and 6 deletions

View File

@@ -28,6 +28,11 @@ public class PileBasicInfo extends BaseEntity {
@Excel(name = "桩号")
private String sn;
/**
* 桩别名
*/
private String name;
/**
* 状态0-未知1-在线2-离线3-故障)
*/
@@ -118,6 +123,14 @@ public class PileBasicInfo extends BaseEntity {
return sn;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void setBusinessType(String businessType) {
this.businessType = businessType;
}
@@ -224,6 +237,7 @@ public class PileBasicInfo extends BaseEntity {
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
.append("id", getId())
.append("sn", getSn())
.append("name", getName())
.append("businessType", getBusinessType())
.append("secretKey", getSecretKey())
.append("softwareProtocol", getSoftwareProtocol())