This commit is contained in:
2023-08-08 15:44:12 +08:00
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())

View File

@@ -23,6 +23,11 @@ public class PileDetailVO {
*/
private String pileSn;
/**
* 别名
*/
private String name;
/**
* 状态 0-未知1-在线2-离线3-故障
*/