package com.java110.dto.menu;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 小区功能数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class MenuGroupCommunityDto extends PageDto implements Serializable {
|
|
private String gId;
|
private String gcId;
|
private String name;
|
private String communityName;
|
private String communityId;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
public String getgId() {
|
return gId;
|
}
|
|
public void setgId(String gId) {
|
this.gId = gId;
|
}
|
|
public String getGcId() {
|
return gcId;
|
}
|
|
public void setGcId(String gcId) {
|
this.gcId = gcId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCommunityName() {
|
return communityName;
|
}
|
|
public void setCommunityName(String communityName) {
|
this.communityName = communityName;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
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;
|
}
|
}
|