java110
2020-12-10 2bcd6e70296bcc6df88817ea7ad9ebd1edc89955
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
@@ -34,6 +35,8 @@
    private String parentAreaName;
    private String communityArea;
    private List<CommunityAttrDto> communityAttrDtos;
    private Date createTime;
@@ -202,4 +205,12 @@
    public void setCommunityArea(String communityArea) {
        this.communityArea = communityArea;
    }
    public List<CommunityAttrDto> getCommunityAttrDtos() {
        return communityAttrDtos;
    }
    public void setCommunityAttrDtos(List<CommunityAttrDto> communityAttrDtos) {
        this.communityAttrDtos = communityAttrDtos;
    }
}