java110
2021-08-19 6e8c95d31d85b53857e4e3ce12ea303eb0ea42eb
java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java
old mode 100644 new mode 100755
@@ -4,6 +4,7 @@
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * @ClassName FloorDto
@@ -30,10 +31,15 @@
    private String auditStatusCd;
    private String areaCode;
    private String areaName;
    private String cityName;
    private String provName;
    private String parentAreaCode;
    private String parentAreaName;
    private String tel;
    private String communityArea;
    private List<CommunityAttrDto> communityAttrDtos;
    private Date createTime;
@@ -202,4 +208,36 @@
    public void setCommunityArea(String communityArea) {
        this.communityArea = communityArea;
    }
    public List<CommunityAttrDto> getCommunityAttrDtos() {
        return communityAttrDtos;
    }
    public void setCommunityAttrDtos(List<CommunityAttrDto> communityAttrDtos) {
        this.communityAttrDtos = communityAttrDtos;
    }
    public String getCityName() {
        return cityName;
    }
    public void setCityName(String cityName) {
        this.cityName = cityName;
    }
    public String getProvName() {
        return provName;
    }
    public void setProvName(String provName) {
        this.provName = provName;
    }
    public String getTel() {
        return tel;
    }
    public void setTel(String tel) {
        this.tel = tel;
    }
}