17f75c383aeee92bb30e5876b4ac0b082cbbc033.svn-base 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:TacPblmRectOrg
  9. *
  10. * @author lhc
  11. * @date 2019-12-24
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class TacPblmRectOrg extends BaseBean implements Serializable {
  15. // 通知附件id
  16. @ApiModelProperty(value = "通知附件id", name = "fileId")
  17. private String fileId;
  18. // 通知附件名称
  19. @ApiModelProperty(value = "通知附件名称", name = "fileName")
  20. private String fileName;
  21. // 通知附件路径
  22. @ApiModelProperty(value = "通知附件路径", name = "filePath")
  23. private String filePath;
  24. // 反馈通知附件id
  25. @ApiModelProperty(value = "反馈通知附件id", name = "rectFileId")
  26. private String rectFileId;
  27. // 反馈通知附件名称
  28. @ApiModelProperty(value = "反馈通知附件名称", name = "rectFileName")
  29. private String rectFileName;
  30. // 反馈通知附件路径
  31. @ApiModelProperty(value = "反馈通知附件路径", name = "rectFilePath")
  32. private String rectFilePath;
  33. // 通知名称
  34. @ApiModelProperty(value = "通知名称", name = "title")
  35. private String title;
  36. // 通知文号
  37. @ApiModelProperty(value = "通知文号", name = "nub")
  38. private String nub;
  39. // 整改说明
  40. @ApiModelProperty(value = "整改说明", name = "explain")
  41. private String explain;
  42. // 通知印发时间
  43. @ApiModelProperty(value = "通知印发时间", name = "printTm")
  44. private Date printTm;
  45. // 整改截止期限
  46. @ApiModelProperty(value = "整改截止期限", name = "closeTm")
  47. private Date closeTm;
  48. // 批次通知附件id
  49. @ApiModelProperty(value = "批次通知附件id", name = "sndFileId")
  50. private String sndFileId;
  51. // 批次通知附件名称
  52. @ApiModelProperty(value = "批次通知附件名称", name = "sndFileName")
  53. private String sndFileName;
  54. // 批次通知附件路径
  55. @ApiModelProperty(value = "批次通知附件路径", name = "sndFilePath")
  56. private String sndFilePath;
  57. // 主键ID
  58. @ApiModelProperty(value = "主键ID", name = "id")
  59. private String id;
  60. // 建安中心通知ID
  61. @ApiModelProperty(value = "建安中心通知ID", name = "rectId")
  62. private String rectId;
  63. // 年度
  64. @ApiModelProperty(value = "年度", name = "year")
  65. private Long year;
  66. // 批次
  67. @ApiModelProperty(value = "批次", name = "batch")
  68. private Long batch;
  69. // 接收单位ID
  70. @ApiModelProperty(value = "接收单位ID", name = "rectOrgId")
  71. private String rectOrgId;
  72. // 接收单位名称
  73. @ApiModelProperty(value = "接收单位名称", name = "rectOrgNm")
  74. private String rectOrgNm;
  75. // 工程总数
  76. @ApiModelProperty(value = "工程总数", name = "prjctSize")
  77. private Long prjctSize;
  78. // 问题总数
  79. @ApiModelProperty(value = "问题总数", name = "pblmSize")
  80. private Long pblmSize;
  81. // 状态 0未下发 1 已下发 2 已反馈
  82. @ApiModelProperty(value = "状态 0未下发 1 已下发 2 已反馈", name = "state")
  83. private String state;
  84. // 反馈时间
  85. @ApiModelProperty(value = "反馈时间", name = "rectTm")
  86. private Date rectTm;
  87. // 反馈文号
  88. @ApiModelProperty(value = "反馈文号", name = "rectNub")
  89. private String rectNub;
  90. // 审核状态 0 未审核 1 归档
  91. @ApiModelProperty(value = "审核状态 0 未审核 1 归档", name = "chkState")
  92. private String chkState;
  93. // 被稽察单位联系人
  94. @ApiModelProperty(value = "被稽察单位联系人", name = "chkPersInfo")
  95. private String chkPersInfo;
  96. // 地方问责情况
  97. @ApiModelProperty(value = "地方问责情况", name = "placeDuty")
  98. private String placeDuty;
  99. // 反馈人员ID
  100. @ApiModelProperty(value = "反馈人员ID", name = "rectPersId")
  101. private String rectPersId;
  102. // 反馈人员姓名
  103. @ApiModelProperty(value = "反馈人员姓名", name = "rectPersName")
  104. private String rectPersName;
  105. // 责任追究决定
  106. @ApiModelProperty(value = "责任追究决定", name = "dutyTrace")
  107. private String dutyTrace;
  108. // 创建人员id
  109. @ApiModelProperty(value = "创建人员id", name = "persId")
  110. private String persId;
  111. // 创建人员姓名
  112. @ApiModelProperty(value = "创建人员姓名", name = "persName")
  113. private String persName;
  114. // 创建时间
  115. @ApiModelProperty(value = "创建时间", name = "intm")
  116. private Date intm;
  117. // 最后修改时间
  118. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  119. private Date uptm;
  120. // 数据状态(0:正常;9:删除)
  121. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  122. private String dataStat;
  123. @ApiModelProperty(value = "是否上传附件 0 未上传 1 上传", name = "fileState")
  124. private String fileState;
  125. public TacPblmRectOrg() {
  126. }
  127. public String getFileId() {
  128. return fileId;
  129. }
  130. public void setFileId(String fileId) {
  131. this.fileId = fileId;
  132. }
  133. public String getFileName() {
  134. return fileName;
  135. }
  136. public void setFileName(String fileName) {
  137. this.fileName = fileName;
  138. }
  139. public String getFilePath() {
  140. return filePath;
  141. }
  142. public void setFilePath(String filePath) {
  143. this.filePath = filePath;
  144. }
  145. public String getRectFileId() {
  146. return rectFileId;
  147. }
  148. public void setRectFileId(String rectFileId) {
  149. this.rectFileId = rectFileId;
  150. }
  151. public String getRectFileName() {
  152. return rectFileName;
  153. }
  154. public void setRectFileName(String rectFileName) {
  155. this.rectFileName = rectFileName;
  156. }
  157. public String getRectFilePath() {
  158. return rectFilePath;
  159. }
  160. public void setRectFilePath(String rectFilePath) {
  161. this.rectFilePath = rectFilePath;
  162. }
  163. public String getTitle() {
  164. return title;
  165. }
  166. public void setTitle(String title) {
  167. this.title = title;
  168. }
  169. public String getNub() {
  170. return nub;
  171. }
  172. public void setNub(String nub) {
  173. this.nub = nub;
  174. }
  175. public String getExplain() {
  176. return explain;
  177. }
  178. public void setExplain(String explain) {
  179. this.explain = explain;
  180. }
  181. public Date getPrintTm() {
  182. return printTm;
  183. }
  184. public void setPrintTm(Date printTm) {
  185. this.printTm = printTm;
  186. }
  187. public Date getCloseTm() {
  188. return closeTm;
  189. }
  190. public void setCloseTm(Date closeTm) {
  191. this.closeTm = closeTm;
  192. }
  193. public String getSndFileId() {
  194. return sndFileId;
  195. }
  196. public void setSndFileId(String sndFileId) {
  197. this.sndFileId = sndFileId;
  198. }
  199. public String getSndFileName() {
  200. return sndFileName;
  201. }
  202. public void setSndFileName(String sndFileName) {
  203. this.sndFileName = sndFileName;
  204. }
  205. public String getSndFilePath() {
  206. return sndFilePath;
  207. }
  208. public void setSndFilePath(String sndFilePath) {
  209. this.sndFilePath = sndFilePath;
  210. }
  211. public String getId() {
  212. return id;
  213. }
  214. public void setId(String id) {
  215. this.id = id;
  216. }
  217. public String getRectId() {
  218. return rectId;
  219. }
  220. public void setRectId(String rectId) {
  221. this.rectId = rectId;
  222. }
  223. public Long getYear() {
  224. return year;
  225. }
  226. public void setYear(Long year) {
  227. this.year = year;
  228. }
  229. public Long getBatch() {
  230. return batch;
  231. }
  232. public void setBatch(Long batch) {
  233. this.batch = batch;
  234. }
  235. public String getRectOrgId() {
  236. return rectOrgId;
  237. }
  238. public void setRectOrgId(String rectOrgId) {
  239. this.rectOrgId = rectOrgId;
  240. }
  241. public String getRectOrgNm() {
  242. return rectOrgNm;
  243. }
  244. public void setRectOrgNm(String rectOrgNm) {
  245. this.rectOrgNm = rectOrgNm;
  246. }
  247. public Long getPrjctSize() {
  248. return prjctSize;
  249. }
  250. public void setPrjctSize(Long prjctSize) {
  251. this.prjctSize = prjctSize;
  252. }
  253. public Long getPblmSize() {
  254. return pblmSize;
  255. }
  256. public void setPblmSize(Long pblmSize) {
  257. this.pblmSize = pblmSize;
  258. }
  259. public String getState() {
  260. return state;
  261. }
  262. public void setState(String state) {
  263. this.state = state;
  264. }
  265. public Date getRectTm() {
  266. return rectTm;
  267. }
  268. public void setRectTm(Date rectTm) {
  269. this.rectTm = rectTm;
  270. }
  271. public String getRectNub() {
  272. return rectNub;
  273. }
  274. public void setRectNub(String rectNub) {
  275. this.rectNub = rectNub;
  276. }
  277. public String getChkState() {
  278. return chkState;
  279. }
  280. public void setChkState(String chkState) {
  281. this.chkState = chkState;
  282. }
  283. public String getChkPersInfo() {
  284. return chkPersInfo;
  285. }
  286. public void setChkPersInfo(String chkPersInfo) {
  287. this.chkPersInfo = chkPersInfo;
  288. }
  289. public String getPlaceDuty() {
  290. return placeDuty;
  291. }
  292. public void setPlaceDuty(String placeDuty) {
  293. this.placeDuty = placeDuty;
  294. }
  295. public String getRectPersId() {
  296. return rectPersId;
  297. }
  298. public void setRectPersId(String rectPersId) {
  299. this.rectPersId = rectPersId;
  300. }
  301. public String getRectPersName() {
  302. return rectPersName;
  303. }
  304. public void setRectPersName(String rectPersName) {
  305. this.rectPersName = rectPersName;
  306. }
  307. public String getDutyTrace() {
  308. return dutyTrace;
  309. }
  310. public void setDutyTrace(String dutyTrace) {
  311. this.dutyTrace = dutyTrace;
  312. }
  313. public String getPersId() {
  314. return persId;
  315. }
  316. public void setPersId(String persId) {
  317. this.persId = persId;
  318. }
  319. public String getPersName() {
  320. return persName;
  321. }
  322. public void setPersName(String persName) {
  323. this.persName = persName;
  324. }
  325. public Date getIntm() {
  326. return intm;
  327. }
  328. public void setIntm(Date intm) {
  329. this.intm = intm;
  330. }
  331. public Date getUptm() {
  332. return uptm;
  333. }
  334. public void setUptm(Date uptm) {
  335. this.uptm = uptm;
  336. }
  337. public String getDataStat() {
  338. return dataStat;
  339. }
  340. public void setDataStat(String dataStat) {
  341. this.dataStat = dataStat;
  342. }
  343. public String getFileState() {
  344. return fileState;
  345. }
  346. public void setFileState(String fileState) {
  347. this.fileState = fileState;
  348. }
  349. @Override
  350. public String toString() {
  351. return "TacPblmRectOrg [" + "fileId=" + fileId + ", fileName=" + fileName + ", filePath=" + filePath + ", rectFileId=" + rectFileId + ", rectFileName=" + rectFileName + ", rectFilePath=" + rectFilePath + ", title=" + title + ", nub=" + nub + ", explain=" + explain + ", printTm=" + printTm + ", closeTm=" + closeTm + ", sndFileId=" + sndFileId + ", sndFileName=" + sndFileName + ", sndFilePath=" + sndFilePath + ", id=" + id + ", rectId=" + rectId + ", year=" + year + ", batch=" + batch + ", rectOrgId=" + rectOrgId + ", rectOrgNm=" + rectOrgNm + ", prjctSize=" + prjctSize + ", pblmSize=" + pblmSize + ", state=" + state + ", rectTm=" + rectTm + ", rectNub=" + rectNub + ", chkState=" + chkState + ", chkPersInfo=" + chkPersInfo + ", placeDuty=" + placeDuty + ", rectPersId=" + rectPersId + ", rectPersName=" + rectPersName + ", dutyTrace=" + dutyTrace + ", persId=" + persId + ", persName=" + persName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  352. }
  353. }