116 lines
2.5 KiB
Java
116 lines
2.5 KiB
Java
package com.nis.domain;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.google.common.collect.Lists;
|
|
|
|
public class SysDataDictionaryName extends BaseEntity<SysDataDictionaryName> {
|
|
|
|
private static final long serialVersionUID = 8475518325068404528L;
|
|
|
|
private String moduleName;
|
|
|
|
private String mark;
|
|
|
|
private String remark;
|
|
|
|
private String revision;
|
|
|
|
private Date createTime;
|
|
|
|
private Date modifyTime;
|
|
|
|
private Integer status;
|
|
|
|
private List<SysDataDictionaryItem> dictItemList = Lists.newArrayList();
|
|
|
|
private Date beginDate; // 开始日期
|
|
private Date endDate; // 结束日期
|
|
|
|
|
|
|
|
public String getModuleName() {
|
|
return moduleName;
|
|
}
|
|
|
|
public void setModuleName(String moduleName) {
|
|
this.moduleName = moduleName == null ? null : moduleName.trim();
|
|
}
|
|
|
|
public String getMark() {
|
|
return mark;
|
|
}
|
|
|
|
public void setMark(String mark) {
|
|
this.mark = mark == null ? null : mark.trim();
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark == null ? null : remark.trim();
|
|
}
|
|
|
|
public String getRevision() {
|
|
return revision;
|
|
}
|
|
|
|
public void setRevision(String revision) {
|
|
this.revision = revision == null ? null : revision.trim();
|
|
}
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
public Date getModifyTime() {
|
|
return modifyTime;
|
|
}
|
|
|
|
public void setModifyTime(Date modifyTime) {
|
|
this.modifyTime = modifyTime;
|
|
}
|
|
|
|
public Integer getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(Integer status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public List<SysDataDictionaryItem> getDictItemList() {
|
|
return dictItemList;
|
|
}
|
|
|
|
public void setDictItemList(List<SysDataDictionaryItem> dictItemList) {
|
|
this.dictItemList = dictItemList;
|
|
}
|
|
|
|
public Date getBeginDate() {
|
|
return beginDate;
|
|
}
|
|
|
|
public void setBeginDate(Date beginDate) {
|
|
this.beginDate = beginDate;
|
|
}
|
|
|
|
public Date getEndDate() {
|
|
return endDate;
|
|
}
|
|
|
|
public void setEndDate(Date endDate) {
|
|
this.endDate = endDate;
|
|
}
|
|
|
|
} |