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 CommunityDto2 extends PageDto implements Serializable {
|
|
public static final String STATE_NORMAL = "1100";
|
|
private String communityId;
|
private String communityCode;
|
private String name;
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getCommunityCode() {
|
return communityCode;
|
}
|
|
public void setCommunityCode(String communityCode) {
|
this.communityCode = communityCode;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
}
|