初步封装

This commit is contained in:
2026-05-06 16:04:39 +08:00
commit b1097e86e2
94 changed files with 7205 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
package com.seeyon.apps.assetstenant.community;
import com.seeyon.apps.assetstenant.file.OaFileVo;
public class CommunitityVo {
private String referenceTotalPrice;//参考总价
private String renovation;//装修
private String features;//特色
private String communityId;
private String referenceAvgPrice;//参考均价
private OaFileVo coverImg;//封面图
private String communityName;//楼盘名称
public String getReferenceTotalPrice() {
return referenceTotalPrice;
}
public void setReferenceTotalPrice(String referenceTotalPrice) {
this.referenceTotalPrice = referenceTotalPrice;
}
public String getRenovation() {
return renovation;
}
public void setRenovation(String renovation) {
this.renovation = renovation;
}
public String getFeatures() {
return features;
}
public void setFeatures(String features) {
this.features = features;
}
public String getCommunityId() {
return communityId;
}
public void setCommunityId(String communityId) {
this.communityId = communityId;
}
public String getReferenceAvgPrice() {
return referenceAvgPrice;
}
public void setReferenceAvgPrice(String referenceAvgPrice) {
this.referenceAvgPrice = referenceAvgPrice;
}
public OaFileVo getCoverImg() {
return coverImg;
}
public void setCoverImg(OaFileVo coverImg) {
this.coverImg = coverImg;
}
public String getCommunityName() {
return communityName;
}
public void setCommunityName(String communityName) {
this.communityName = communityName;
}
}