95a8567c70c818405bdf8025c685c8ff5fbc7aba.svn-base 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import cn.com.goldenwater.id.util.UuidUtil;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import java.util.List;
  9. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  10. public class ChkSafeProdLedger extends PageParam implements Serializable {
  11. @ApiModelProperty(value = "主键ID")
  12. private String id;
  13. @ApiModelProperty(value = "机构ID")
  14. private String orgId;
  15. @ApiModelProperty(value = "行政区划代码")
  16. private String adCode;
  17. @ApiModelProperty(value = "行政区划名称")
  18. private String adName;
  19. @ApiModelProperty(value = "报送月份")
  20. private Date chkMnth;
  21. @ApiModelProperty(value = "项目类型")
  22. private String chkProjType;
  23. @ApiModelProperty(value = "检查日期")
  24. private Date chkDttm;
  25. @ApiModelProperty(value = "组织检查单位")
  26. private String leadDep;
  27. @ApiModelProperty(value = "组织检查单位负责人")
  28. private String leadDepRespPers;
  29. @ApiModelProperty(value = "被检查单位")
  30. private String chkOrg;
  31. @ApiModelProperty(value = "被检查单位负责人")
  32. private String chkOrgRespPers;
  33. @ApiModelProperty(value = "被检查单位负责人电话")
  34. private String chkOrgRespPersMobi;
  35. /**
  36. * 检查结果 0无隐患 1有隐患
  37. */
  38. @ApiModelProperty(value = "检查结果")
  39. private String chkResult;
  40. @ApiModelProperty(value = "隐患问题")
  41. private String chkDgerPblm;
  42. @ApiModelProperty(value = "处理意见")
  43. private String chkHandSugg;
  44. @ApiModelProperty(value = "处理时限")
  45. private Date chkHandEdtm;
  46. /**
  47. * 整改落实情况 0-未整改 1-正在整改 2-完成整改
  48. */
  49. @ApiModelProperty(value = "整改落实情况")
  50. private String chkRectImplInfo;
  51. @ApiModelProperty(value = "整改落实情况说明")
  52. private String chkRectImplInfoDesc;
  53. @ApiModelProperty(value = "整改验收时间")
  54. private Date chkAcceTm;
  55. @ApiModelProperty(value = "整改验收人")
  56. private String chkAccePers;
  57. @ApiModelProperty(value = "总隐患数")
  58. private Long chkTotalPblmNum;
  59. @ApiModelProperty(value = "总整改数")
  60. private Long chkTotalRectNum;
  61. @ApiModelProperty(value = "报送单位")
  62. private String chkFillUnit;
  63. @ApiModelProperty(value = "填报单位")
  64. private String chkSubmitDept;
  65. @ApiModelProperty(value = "填报日期")
  66. private Date chkSubmitDttm;
  67. /**
  68. * 默认 1-新增; 2-上报;
  69. */
  70. @ApiModelProperty(value = "填报状态")
  71. private String fillRepoStat;
  72. @ApiModelProperty(value = "备注")
  73. private String note;
  74. @ApiModelProperty(value = "创建人")
  75. private String persId;
  76. @ApiModelProperty(value = "创建时间")
  77. private Date intm;
  78. @ApiModelProperty(value = "修改时间")
  79. private Date uptm;
  80. @ApiModelProperty(value = "数据状态(0:正常;9:删除)")
  81. private String dataStat;
  82. /**
  83. * 分页参数 月份
  84. */
  85. private List<Date> chkMnthList;
  86. public ChkSafeProdLedger(){}
  87. public ChkSafeProdLedger(String curOrgId, String adCode, String submitDept, Date curDate,String curPersId){
  88. this.setId(UuidUtil.uuid());
  89. this.setOrgId(curOrgId);
  90. this.setAdCode(adCode);
  91. this.setIntm(curDate);
  92. this.setUptm(curDate);
  93. this.setPersId(curPersId);
  94. this.setDataStat("0");
  95. // 报送月份和填报日期 不需要
  96. this.setChkMnth(null);
  97. this.setChkSubmitDttm(null);
  98. this.setChkSubmitDept(submitDept);
  99. this.setFillRepoStat("1");
  100. }
  101. public String getId() {
  102. return id;
  103. }
  104. public void setId(String id) {
  105. this.id = id == null ? null : id.trim();
  106. }
  107. @Override
  108. public String getOrgId() {
  109. return orgId;
  110. }
  111. @Override
  112. public void setOrgId(String orgId) {
  113. this.orgId = orgId == null ? null : orgId.trim();
  114. }
  115. public String getAdCode() {
  116. return adCode;
  117. }
  118. public void setAdCode(String adCode) {
  119. this.adCode = adCode == null ? null : adCode.trim();
  120. }
  121. public String getAdName() { return adName; }
  122. public void setAdName(String adName) { this.adName = adName; }
  123. public Date getChkMnth() {
  124. return chkMnth;
  125. }
  126. public void setChkMnth(Date chkMnth) {
  127. this.chkMnth = chkMnth;
  128. }
  129. public Date getChkDttm() {
  130. return chkDttm;
  131. }
  132. public String getChkProjType() {
  133. return chkProjType;
  134. }
  135. public void setChkProjType(String chkProjType) {
  136. this.chkProjType = chkProjType;
  137. }
  138. public void setChkDttm(Date chkDttm) {
  139. this.chkDttm = chkDttm;
  140. }
  141. public String getLeadDep() {
  142. return leadDep;
  143. }
  144. public void setLeadDep(String leadDep) {
  145. this.leadDep = leadDep == null ? null : leadDep.trim();
  146. }
  147. public String getLeadDepRespPers() {
  148. return leadDepRespPers;
  149. }
  150. public void setLeadDepRespPers(String leadDepRespPers) {
  151. this.leadDepRespPers = leadDepRespPers == null ? null : leadDepRespPers.trim();
  152. }
  153. public String getChkOrg() {
  154. return chkOrg;
  155. }
  156. public void setChkOrg(String chkOrg) {
  157. this.chkOrg = chkOrg == null ? null : chkOrg.trim();
  158. }
  159. public String getChkOrgRespPers() {
  160. return chkOrgRespPers;
  161. }
  162. public void setChkOrgRespPers(String chkOrgRespPers) {
  163. this.chkOrgRespPers = chkOrgRespPers == null ? null : chkOrgRespPers.trim();
  164. }
  165. public String getChkOrgRespPersMobi() {
  166. return chkOrgRespPersMobi;
  167. }
  168. public void setChkOrgRespPersMobi(String chkOrgRespPersMobi) {
  169. this.chkOrgRespPersMobi = chkOrgRespPersMobi == null ? null : chkOrgRespPersMobi.trim();
  170. }
  171. public String getChkResult() {
  172. return chkResult;
  173. }
  174. public void setChkResult(String chkResult) {
  175. this.chkResult = chkResult == null ? null : chkResult.trim();
  176. }
  177. public String getChkDgerPblm() {
  178. return chkDgerPblm;
  179. }
  180. public void setChkDgerPblm(String chkDgerPblm) {
  181. this.chkDgerPblm = chkDgerPblm;
  182. }
  183. public String getChkHandSugg() {
  184. return chkHandSugg;
  185. }
  186. public void setChkHandSugg(String chkHandSugg) {
  187. this.chkHandSugg = chkHandSugg == null ? null : chkHandSugg.trim();
  188. }
  189. public Date getChkHandEdtm() {
  190. return chkHandEdtm;
  191. }
  192. public void setChkHandEdtm(Date chkHandEdtm) {
  193. this.chkHandEdtm = chkHandEdtm;
  194. }
  195. public String getChkRectImplInfo() {
  196. return chkRectImplInfo;
  197. }
  198. public void setChkRectImplInfo(String chkRectImplInfo) {
  199. this.chkRectImplInfo = chkRectImplInfo == null ? null : chkRectImplInfo.trim();
  200. }
  201. public String getChkRectImplInfoDesc() {
  202. return chkRectImplInfoDesc;
  203. }
  204. public void setChkRectImplInfoDesc(String chkRectImplInfoDesc) {
  205. this.chkRectImplInfoDesc = chkRectImplInfoDesc;
  206. }
  207. public Date getChkAcceTm() {
  208. return chkAcceTm;
  209. }
  210. public void setChkAcceTm(Date chkAcceTm) {
  211. this.chkAcceTm = chkAcceTm;
  212. }
  213. public String getChkAccePers() {
  214. return chkAccePers;
  215. }
  216. public void setChkAccePers(String chkAccePers) {
  217. this.chkAccePers = chkAccePers == null ? null : chkAccePers.trim();
  218. }
  219. public Long getChkTotalPblmNum() {
  220. return chkTotalPblmNum;
  221. }
  222. public void setChkTotalPblmNum(Long chkTotalPblmNum) {
  223. this.chkTotalPblmNum = chkTotalPblmNum;
  224. }
  225. public Long getChkTotalRectNum() {
  226. return chkTotalRectNum;
  227. }
  228. public void setChkTotalRectNum(Long chkTotalRectNum) {
  229. this.chkTotalRectNum = chkTotalRectNum;
  230. }
  231. public String getChkFillUnit() {
  232. return chkFillUnit;
  233. }
  234. public void setChkFillUnit(String chkFillUnit) {
  235. this.chkFillUnit = chkFillUnit;
  236. }
  237. public String getChkSubmitDept() {
  238. return chkSubmitDept;
  239. }
  240. public void setChkSubmitDept(String chkSubmitDept) {
  241. this.chkSubmitDept = chkSubmitDept == null ? null : chkSubmitDept.trim();
  242. }
  243. public Date getChkSubmitDttm() {
  244. return chkSubmitDttm;
  245. }
  246. public void setChkSubmitDttm(Date chkSubmitDttm) {
  247. this.chkSubmitDttm = chkSubmitDttm;
  248. }
  249. public String getFillRepoStat() {
  250. return fillRepoStat;
  251. }
  252. public void setFillRepoStat(String fillRepoStat) {
  253. this.fillRepoStat = fillRepoStat == null ? null : fillRepoStat.trim();
  254. }
  255. public String getNote() {
  256. return note;
  257. }
  258. public void setNote(String note) {
  259. this.note = note == null ? null : note.trim();
  260. }
  261. public String getPersId() {
  262. return persId;
  263. }
  264. public void setPersId(String persId) {
  265. this.persId = persId == null ? null : persId.trim();
  266. }
  267. public Date getIntm() {
  268. return intm;
  269. }
  270. public void setIntm(Date intm) {
  271. this.intm = intm;
  272. }
  273. public Date getUptm() {
  274. return uptm;
  275. }
  276. public void setUptm(Date uptm) {
  277. this.uptm = uptm;
  278. }
  279. public String getDataStat() {
  280. return dataStat;
  281. }
  282. public void setDataStat(String dataStat) {
  283. this.dataStat = dataStat == null ? null : dataStat.trim();
  284. }
  285. public List<Date> getChkMnthList() {
  286. return chkMnthList;
  287. }
  288. public void setChkMnthList(List<Date> chkMnthList) {
  289. this.chkMnthList = chkMnthList;
  290. }
  291. }