package com.java110.dto.activitiesType;
|
|
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 ActivitiesTypeDto extends PageDto implements Serializable {
|
|
private String typeDesc;
|
private String typeCd;
|
private String typeName;
|
private String defaultShow;
|
private String communityId;
|
private String seq;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getTypeDesc() {
|
return typeDesc;
|
}
|
|
public void setTypeDesc(String typeDesc) {
|
this.typeDesc = typeDesc;
|
}
|
|
public String getTypeCd() {
|
return typeCd;
|
}
|
|
public void setTypeCd(String typeCd) {
|
this.typeCd = typeCd;
|
}
|
|
public String getTypeName() {
|
return typeName;
|
}
|
|
public void setTypeName(String typeName) {
|
this.typeName = typeName;
|
}
|
|
public String getDefaultShow() {
|
return defaultShow;
|
}
|
|
public void setDefaultShow(String defaultShow) {
|
this.defaultShow = defaultShow;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getSeq() {
|
return seq;
|
}
|
|
public void setSeq(String seq) {
|
this.seq = seq;
|
}
|
|
|
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;
|
}
|
}
|