java110
2020-12-10 7aec551e05669759c0c52a63f2911316dd32314c
java110-bean/src/main/java/com/java110/dto/community/CommunityDto.java
@@ -4,6 +4,7 @@
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * @ClassName FloorDto
@@ -32,6 +33,10 @@
    private String areaName;
    private String parentAreaCode;
    private String parentAreaName;
    private String communityArea;
    private List<CommunityAttrDto> communityAttrDtos;
    private Date createTime;
@@ -191,4 +196,21 @@
    public void setParentAreaName(String parentAreaName) {
        this.parentAreaName = parentAreaName;
    }
    public String getCommunityArea() {
        return communityArea;
    }
    public void setCommunityArea(String communityArea) {
        this.communityArea = communityArea;
    }
    public List<CommunityAttrDto> getCommunityAttrDtos() {
        return communityAttrDtos;
    }
    public void setCommunityAttrDtos(List<CommunityAttrDto> communityAttrDtos) {
        this.communityAttrDtos = communityAttrDtos;
    }
}