Files
AssetsTenantServer/src/main/java/com/seeyon/apps/assetstenant/community/CommunitityVo.java
2026-06-07 18:17:12 +08:00

160 lines
3.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;//楼盘名称
private String greenRate;//绿化率
private String address;//地址
private String completeDate;//竣工时间
private String transactionOwnership;//交易权属
private String propertyType;//物业类型
private String lng;//经度
private String lat;//纬度
private String contactPhone;//联系电话
private String communityNo;//楼盘编号
private String communityDesc;//楼盘描述
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;
}
public String getGreenRate() {
return greenRate;
}
public void setGreenRate(String greenRate) {
this.greenRate = greenRate;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCompleteDate() {
return completeDate;
}
public void setCompleteDate(String completeDate) {
this.completeDate = completeDate;
}
public String getTransactionOwnership() {
return transactionOwnership;
}
public void setTransactionOwnership(String transactionOwnership) {
this.transactionOwnership = transactionOwnership;
}
public String getPropertyType() {
return propertyType;
}
public void setPropertyType(String propertyType) {
this.propertyType = propertyType;
}
public String getLng() {
return lng;
}
public void setLng(String lng) {
this.lng = lng;
}
public String getLat() {
return lat;
}
public void setLat(String lat) {
this.lat = lat;
}
public String getContactPhone() {
return contactPhone;
}
public void setContactPhone(String contactPhone) {
this.contactPhone = contactPhone;
}
public String getCommunityNo() {
return communityNo;
}
public void setCommunityNo(String communityNo) {
this.communityNo = communityNo;
}
public String getCommunityDesc() {
return communityDesc;
}
public void setCommunityDesc(String communityDesc) {
this.communityDesc = communityDesc;
}
}