| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | |
| | | private String parentAreaName; |
| | | |
| | | private String communityArea; |
| | | |
| | | private List<CommunityAttrDto> communityAttrDtos; |
| | | |
| | | |
| | | private Date createTime; |
| | |
| | | public void setCommunityArea(String communityArea) { |
| | | this.communityArea = communityArea; |
| | | } |
| | | |
| | | public List<CommunityAttrDto> getCommunityAttrDtos() { |
| | | return communityAttrDtos; |
| | | } |
| | | |
| | | public void setCommunityAttrDtos(List<CommunityAttrDto> communityAttrDtos) { |
| | | this.communityAttrDtos = communityAttrDtos; |
| | | } |
| | | } |