提交代码

This commit is contained in:
2026-06-07 18:17:12 +08:00
parent b1097e86e2
commit ac32c13ad6
40 changed files with 1787 additions and 404 deletions

View File

@@ -34,7 +34,8 @@ public class OaAssetsVo {
private String powerFee; //电费
private String powerFeeUnit; //电费单位
private String bizZone;
private List<String> features;
private String manageType; //运营类型
private String[] tags;
private String renovationStatus; //装修状态
public String getAssetsNo() {
@@ -253,12 +254,12 @@ public class OaAssetsVo {
this.bizZone = bizZone;
}
public List<String> getFeatures() {
return features;
public String[] getTags() {
return tags;
}
public void setFeatures(List<String> features) {
this.features = features;
public void setTags(String[] tags) {
this.tags = tags;
}
public String getRenovationStatus() {
@@ -276,4 +277,12 @@ public class OaAssetsVo {
public void setRentFeeUnit(String rentFeeUnit) {
this.rentFeeUnit = rentFeeUnit;
}
public String getManageType() {
return manageType;
}
public void setManageType(String manageType) {
this.manageType = manageType;
}
}