package com.java110.dto.community;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 小区数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class CommunityDto extends PageDto implements Serializable {
|
|
private String address;
|
private String nearbyLandmarks;
|
private String cityCode;
|
private String name;
|
private String communityId;
|
private String[] notInCommunityId;
|
private String mapY;
|
private String mapX;
|
private String memberId;
|
private String state;
|
private String stateName;
|
private String[] communityIds;
|
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;
|
|
private String statusCd = "0";
|
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getNearbyLandmarks() {
|
return nearbyLandmarks;
|
}
|
|
public void setNearbyLandmarks(String nearbyLandmarks) {
|
this.nearbyLandmarks = nearbyLandmarks;
|
}
|
|
public String getCityCode() {
|
return cityCode;
|
}
|
|
public void setCityCode(String cityCode) {
|
this.cityCode = cityCode;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getMapY() {
|
return mapY;
|
}
|
|
public void setMapY(String mapY) {
|
this.mapY = mapY;
|
}
|
|
public String getMapX() {
|
return mapX;
|
}
|
|
public void setMapX(String mapX) {
|
this.mapX = mapX;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getMemberId() {
|
return memberId;
|
}
|
|
public void setMemberId(String memberId) {
|
this.memberId = memberId;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getStateName() {
|
return stateName;
|
}
|
|
public void setStateName(String stateName) {
|
this.stateName = stateName;
|
}
|
|
public String[] getCommunityIds() {
|
return communityIds;
|
}
|
|
public void setCommunityIds(String[] communityIds) {
|
this.communityIds = communityIds;
|
}
|
|
public String getAuditStatusCd() {
|
return auditStatusCd;
|
}
|
|
public void setAuditStatusCd(String auditStatusCd) {
|
this.auditStatusCd = auditStatusCd;
|
}
|
|
public String[] getNotInCommunityId() {
|
return notInCommunityId;
|
}
|
|
public void setNotInCommunityId(String[] notInCommunityId) {
|
this.notInCommunityId = notInCommunityId;
|
}
|
|
public String getAreaCode() {
|
return areaCode;
|
}
|
|
public void setAreaCode(String areaCode) {
|
this.areaCode = areaCode;
|
}
|
|
public String getAreaName() {
|
return areaName;
|
}
|
|
public void setAreaName(String areaName) {
|
this.areaName = areaName;
|
}
|
|
public String getParentAreaCode() {
|
return parentAreaCode;
|
}
|
|
public void setParentAreaCode(String parentAreaCode) {
|
this.parentAreaCode = parentAreaCode;
|
}
|
|
public String getParentAreaName() {
|
return parentAreaName;
|
}
|
|
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;
|
}
|
|
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;
|
}
|
}
|