70 lines
1.7 KiB
Java
70 lines
1.7 KiB
Java
|
|
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;
|
||
|
|
}
|
||
|
|
}
|