package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.param.PageParam; import cn.com.goldenwater.id.util.UuidUtil; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; import java.util.List; @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class ChkSafeProdLedger extends PageParam implements Serializable { @ApiModelProperty(value = "主键ID") private String id; @ApiModelProperty(value = "机构ID") private String orgId; @ApiModelProperty(value = "行政区划代码") private String adCode; @ApiModelProperty(value = "行政区划名称") private String adName; @ApiModelProperty(value = "报送月份") private Date chkMnth; @ApiModelProperty(value = "项目类型") private String chkProjType; @ApiModelProperty(value = "检查日期") private Date chkDttm; @ApiModelProperty(value = "组织检查单位") private String leadDep; @ApiModelProperty(value = "组织检查单位负责人") private String leadDepRespPers; @ApiModelProperty(value = "被检查单位") private String chkOrg; @ApiModelProperty(value = "被检查单位负责人") private String chkOrgRespPers; @ApiModelProperty(value = "被检查单位负责人电话") private String chkOrgRespPersMobi; /** * 检查结果 0无隐患 1有隐患 */ @ApiModelProperty(value = "检查结果") private String chkResult; @ApiModelProperty(value = "隐患问题") private String chkDgerPblm; @ApiModelProperty(value = "处理意见") private String chkHandSugg; @ApiModelProperty(value = "处理时限") private Date chkHandEdtm; /** * 整改落实情况 0-未整改 1-正在整改 2-完成整改 */ @ApiModelProperty(value = "整改落实情况") private String chkRectImplInfo; @ApiModelProperty(value = "整改落实情况说明") private String chkRectImplInfoDesc; @ApiModelProperty(value = "整改验收时间") private Date chkAcceTm; @ApiModelProperty(value = "整改验收人") private String chkAccePers; @ApiModelProperty(value = "总隐患数") private Long chkTotalPblmNum; @ApiModelProperty(value = "总整改数") private Long chkTotalRectNum; @ApiModelProperty(value = "报送单位") private String chkFillUnit; @ApiModelProperty(value = "填报单位") private String chkSubmitDept; @ApiModelProperty(value = "填报日期") private Date chkSubmitDttm; /** * 默认 1-新增; 2-上报; */ @ApiModelProperty(value = "填报状态") private String fillRepoStat; @ApiModelProperty(value = "备注") private String note; @ApiModelProperty(value = "创建人") private String persId; @ApiModelProperty(value = "创建时间") private Date intm; @ApiModelProperty(value = "修改时间") private Date uptm; @ApiModelProperty(value = "数据状态(0:正常;9:删除)") private String dataStat; /** * 分页参数 月份 */ private List chkMnthList; public ChkSafeProdLedger(){} public ChkSafeProdLedger(String curOrgId, String adCode, String submitDept, Date curDate,String curPersId){ this.setId(UuidUtil.uuid()); this.setOrgId(curOrgId); this.setAdCode(adCode); this.setIntm(curDate); this.setUptm(curDate); this.setPersId(curPersId); this.setDataStat("0"); // 报送月份和填报日期 不需要 this.setChkMnth(null); this.setChkSubmitDttm(null); this.setChkSubmitDept(submitDept); this.setFillRepoStat("1"); } public String getId() { return id; } public void setId(String id) { this.id = id == null ? null : id.trim(); } @Override public String getOrgId() { return orgId; } @Override public void setOrgId(String orgId) { this.orgId = orgId == null ? null : orgId.trim(); } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode == null ? null : adCode.trim(); } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public Date getChkMnth() { return chkMnth; } public void setChkMnth(Date chkMnth) { this.chkMnth = chkMnth; } public Date getChkDttm() { return chkDttm; } public String getChkProjType() { return chkProjType; } public void setChkProjType(String chkProjType) { this.chkProjType = chkProjType; } public void setChkDttm(Date chkDttm) { this.chkDttm = chkDttm; } public String getLeadDep() { return leadDep; } public void setLeadDep(String leadDep) { this.leadDep = leadDep == null ? null : leadDep.trim(); } public String getLeadDepRespPers() { return leadDepRespPers; } public void setLeadDepRespPers(String leadDepRespPers) { this.leadDepRespPers = leadDepRespPers == null ? null : leadDepRespPers.trim(); } public String getChkOrg() { return chkOrg; } public void setChkOrg(String chkOrg) { this.chkOrg = chkOrg == null ? null : chkOrg.trim(); } public String getChkOrgRespPers() { return chkOrgRespPers; } public void setChkOrgRespPers(String chkOrgRespPers) { this.chkOrgRespPers = chkOrgRespPers == null ? null : chkOrgRespPers.trim(); } public String getChkOrgRespPersMobi() { return chkOrgRespPersMobi; } public void setChkOrgRespPersMobi(String chkOrgRespPersMobi) { this.chkOrgRespPersMobi = chkOrgRespPersMobi == null ? null : chkOrgRespPersMobi.trim(); } public String getChkResult() { return chkResult; } public void setChkResult(String chkResult) { this.chkResult = chkResult == null ? null : chkResult.trim(); } public String getChkDgerPblm() { return chkDgerPblm; } public void setChkDgerPblm(String chkDgerPblm) { this.chkDgerPblm = chkDgerPblm; } public String getChkHandSugg() { return chkHandSugg; } public void setChkHandSugg(String chkHandSugg) { this.chkHandSugg = chkHandSugg == null ? null : chkHandSugg.trim(); } public Date getChkHandEdtm() { return chkHandEdtm; } public void setChkHandEdtm(Date chkHandEdtm) { this.chkHandEdtm = chkHandEdtm; } public String getChkRectImplInfo() { return chkRectImplInfo; } public void setChkRectImplInfo(String chkRectImplInfo) { this.chkRectImplInfo = chkRectImplInfo == null ? null : chkRectImplInfo.trim(); } public String getChkRectImplInfoDesc() { return chkRectImplInfoDesc; } public void setChkRectImplInfoDesc(String chkRectImplInfoDesc) { this.chkRectImplInfoDesc = chkRectImplInfoDesc; } public Date getChkAcceTm() { return chkAcceTm; } public void setChkAcceTm(Date chkAcceTm) { this.chkAcceTm = chkAcceTm; } public String getChkAccePers() { return chkAccePers; } public void setChkAccePers(String chkAccePers) { this.chkAccePers = chkAccePers == null ? null : chkAccePers.trim(); } public Long getChkTotalPblmNum() { return chkTotalPblmNum; } public void setChkTotalPblmNum(Long chkTotalPblmNum) { this.chkTotalPblmNum = chkTotalPblmNum; } public Long getChkTotalRectNum() { return chkTotalRectNum; } public void setChkTotalRectNum(Long chkTotalRectNum) { this.chkTotalRectNum = chkTotalRectNum; } public String getChkFillUnit() { return chkFillUnit; } public void setChkFillUnit(String chkFillUnit) { this.chkFillUnit = chkFillUnit; } public String getChkSubmitDept() { return chkSubmitDept; } public void setChkSubmitDept(String chkSubmitDept) { this.chkSubmitDept = chkSubmitDept == null ? null : chkSubmitDept.trim(); } public Date getChkSubmitDttm() { return chkSubmitDttm; } public void setChkSubmitDttm(Date chkSubmitDttm) { this.chkSubmitDttm = chkSubmitDttm; } public String getFillRepoStat() { return fillRepoStat; } public void setFillRepoStat(String fillRepoStat) { this.fillRepoStat = fillRepoStat == null ? null : fillRepoStat.trim(); } public String getNote() { return note; } public void setNote(String note) { this.note = note == null ? null : note.trim(); } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId == null ? null : persId.trim(); } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat == null ? null : dataStat.trim(); } public List getChkMnthList() { return chkMnthList; } public void setChkMnthList(List chkMnthList) { this.chkMnthList = chkMnthList; } }