2b2c8472455d4926b4e13f94c6da9f314c23a255.svn-base 12 KB

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