| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- 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<Date> 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<Date> getChkMnthList() {
- return chkMnthList;
- }
- public void setChkMnthList(List<Date> chkMnthList) {
- this.chkMnthList = chkMnthList;
- }
- }
|