f48fefd95fe713f94413baed32807111eb7a44b7.svn-base 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspRectProvinceParam
  9. *
  10. * @author lhc
  11. * @date 2020-4-8
  12. */
  13. public class BisInspRectProvinceParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 通知类型
  19. @ApiParam(name = "通知类型")
  20. @ApiModelProperty(value = "通知类型", name = "sndType")
  21. private String sndType;
  22. // 发文标题
  23. @ApiParam(name = "发文标题")
  24. @ApiModelProperty(value = "发文标题", name = "sndTitle")
  25. private String sndTitle;
  26. // 发文文号
  27. @ApiParam(name = "发文文号")
  28. @ApiModelProperty(value = "发文文号", name = "sndNub")
  29. private String sndNub;
  30. // 整改时限
  31. @ApiParam(name = "整改时限")
  32. @ApiModelProperty(value = "整改时限", name = "crrtTm")
  33. private Date crrtTm;
  34. // 发文单位代码
  35. @ApiParam(name = "发文单位代码")
  36. @ApiModelProperty(value = "发文单位代码", name = "sndOrgId")
  37. private String sndOrgId;
  38. // 发文单位名称
  39. @ApiParam(name = "发文单位名称")
  40. @ApiModelProperty(value = "发文单位名称", name = "sndOrgName")
  41. private String sndOrgName;
  42. // 接收单位代码
  43. @ApiParam(name = "接收单位代码")
  44. @ApiModelProperty(value = "接收单位代码", name = "rectOrgId")
  45. private String rectOrgId;
  46. // 接收单位名称
  47. @ApiParam(name = "接收单位名称")
  48. @ApiModelProperty(value = "接收单位名称", name = "rectOrgName")
  49. private String rectOrgName;
  50. // 工程总数
  51. @ApiParam(name = "工程总数")
  52. @ApiModelProperty(value = "工程总数", name = "pjctSize")
  53. private Long pjctSize;
  54. // 问题总数
  55. @ApiParam(name = "问题总数")
  56. @ApiModelProperty(value = "问题总数", name = "pblmSize")
  57. private Long pblmSize;
  58. // 通知附件id
  59. @ApiParam(name = "通知附件id")
  60. @ApiModelProperty(value = "通知附件id", name = "fileId")
  61. private String fileId;
  62. // 通知附件名称
  63. @ApiParam(name = "通知附件名称")
  64. @ApiModelProperty(value = "通知附件名称", name = "fileName")
  65. private String fileName;
  66. // 通知附件路径
  67. @ApiParam(name = "通知附件路径")
  68. @ApiModelProperty(value = "通知附件路径", name = "filePath")
  69. private String filePath;
  70. // 反馈时间
  71. @ApiParam(name = "反馈时间")
  72. @ApiModelProperty(value = "反馈时间", name = "rectTm")
  73. private Date rectTm;
  74. // 反馈人ID
  75. @ApiParam(name = "反馈人ID")
  76. @ApiModelProperty(value = "反馈人ID", name = "rectPersId")
  77. private String rectPersId;
  78. // 反馈人姓名
  79. @ApiParam(name = "反馈人姓名")
  80. @ApiModelProperty(value = "反馈人姓名", name = "rectPersName")
  81. private String rectPersName;
  82. // 0:处室新建未提交 1:处室提交待监督处审核 2:处室提交监督处驳回 3:监督处审核下发 4:市级提交反馈 5:业务处室驳回 6:业务处室审核通过 7:监督处归档
  83. @ApiParam(name = "0:处室新建未提交 1:处室提交待监督处审核 2:处室提交监督处驳回 3:监督处审核下发 4:市级提交反馈 5:业务处室驳回 6:业务处室审核通过 7:监督处归档 ")
  84. @ApiModelProperty(value = "0:处室新建未提交 1:处室提交待监督处审核 2:处室提交监督处驳回 3:监督处审核下发 4:市级提交反馈 5:业务处室驳回 6:业务处室审核通过 7:监督处归档 ", name = "state")
  85. private String state;
  86. // 备注
  87. @ApiParam(name = "备注")
  88. @ApiModelProperty(value = "备注", name = "note")
  89. private String note;
  90. // 创建人
  91. @ApiParam(name = "创建人")
  92. @ApiModelProperty(value = "创建人", name = "persId")
  93. private String persId;
  94. // 创建人姓名
  95. @ApiParam(name = "创建人姓名")
  96. @ApiModelProperty(value = "创建人姓名", name = "persName")
  97. private String persName;
  98. // 创建时间
  99. @ApiParam(name = "创建时间")
  100. @ApiModelProperty(value = "创建时间", name = "intm")
  101. private Date intm;
  102. // 修改时间
  103. @ApiParam(name = "修改时间")
  104. @ApiModelProperty(value = "修改时间", name = "uptm")
  105. private Date uptm;
  106. // 数据状态(0:正常;9:删除)
  107. @ApiParam(name = "数据状态(0:正常;9:删除)")
  108. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  109. private String dataStat;
  110. @ApiModelProperty(value = "当前操作人ID", name = "curentPersId")
  111. private String curentPersId;
  112. @ApiModelProperty(value = "当前操作人机构ID", name = "curentPersIdOrgId")
  113. private String curentPersIdOrgId;
  114. @ApiModelProperty(value = "年度", name = "year")
  115. private String year;
  116. @ApiModelProperty(value = "查询参数转发单位ID", name = "satOrg")
  117. private String satOrg;
  118. // 通知督查类型描述
  119. @ApiModelProperty(value = "通知督查类型描述", name = "sndTypeNm")
  120. private String sndTypeNm;
  121. private String province;
  122. @ApiModelProperty(value = "是否超时", name = "isOvertime")
  123. private String isOvertime;
  124. public BisInspRectProvinceParam() {
  125. }
  126. public String getIsOvertime() {
  127. return isOvertime;
  128. }
  129. public void setIsOvertime(String isOvertime) {
  130. this.isOvertime = isOvertime;
  131. }
  132. @Override
  133. public String getProvince() {
  134. return province;
  135. }
  136. @Override
  137. public void setProvince(String province) {
  138. this.province = province;
  139. }
  140. public String getSndTypeNm() {
  141. return sndTypeNm;
  142. }
  143. public void setSndTypeNm(String sndTypeNm) {
  144. this.sndTypeNm = sndTypeNm;
  145. }
  146. public String getSatOrg() {
  147. return satOrg;
  148. }
  149. public void setSatOrg(String satOrg) {
  150. this.satOrg = satOrg;
  151. }
  152. public String getYear() {
  153. return year;
  154. }
  155. public void setYear(String year) {
  156. this.year = year;
  157. }
  158. public String getCurentPersId() {
  159. return curentPersId;
  160. }
  161. public void setCurentPersId(String curentPersId) {
  162. this.curentPersId = curentPersId;
  163. }
  164. public String getCurentPersIdOrgId() {
  165. return curentPersIdOrgId;
  166. }
  167. public void setCurentPersIdOrgId(String curentPersIdOrgId) {
  168. this.curentPersIdOrgId = curentPersIdOrgId;
  169. }
  170. public String getId() {
  171. return id;
  172. }
  173. public void setId(String id) {
  174. this.id = id;
  175. }
  176. public String getSndType() {
  177. return sndType;
  178. }
  179. public void setSndType(String sndType) {
  180. this.sndType = sndType;
  181. }
  182. public String getSndTitle() {
  183. return sndTitle;
  184. }
  185. public void setSndTitle(String sndTitle) {
  186. this.sndTitle = sndTitle;
  187. }
  188. public String getSndNub() {
  189. return sndNub;
  190. }
  191. public void setSndNub(String sndNub) {
  192. this.sndNub = sndNub;
  193. }
  194. public Date getCrrtTm() {
  195. return crrtTm;
  196. }
  197. public void setCrrtTm(Date crrtTm) {
  198. this.crrtTm = crrtTm;
  199. }
  200. public String getSndOrgId() {
  201. return sndOrgId;
  202. }
  203. public void setSndOrgId(String sndOrgId) {
  204. this.sndOrgId = sndOrgId;
  205. }
  206. public String getSndOrgName() {
  207. return sndOrgName;
  208. }
  209. public void setSndOrgName(String sndOrgName) {
  210. this.sndOrgName = sndOrgName;
  211. }
  212. public String getRectOrgId() {
  213. return rectOrgId;
  214. }
  215. public void setRectOrgId(String rectOrgId) {
  216. this.rectOrgId = rectOrgId;
  217. }
  218. public String getRectOrgName() {
  219. return rectOrgName;
  220. }
  221. public void setRectOrgName(String rectOrgName) {
  222. this.rectOrgName = rectOrgName;
  223. }
  224. public Long getPjctSize() {
  225. return pjctSize;
  226. }
  227. public void setPjctSize(Long pjctSize) {
  228. this.pjctSize = pjctSize;
  229. }
  230. public Long getPblmSize() {
  231. return pblmSize;
  232. }
  233. public void setPblmSize(Long pblmSize) {
  234. this.pblmSize = pblmSize;
  235. }
  236. public String getFileId() {
  237. return fileId;
  238. }
  239. public void setFileId(String fileId) {
  240. this.fileId = fileId;
  241. }
  242. public String getFileName() {
  243. return fileName;
  244. }
  245. public void setFileName(String fileName) {
  246. this.fileName = fileName;
  247. }
  248. public String getFilePath() {
  249. return filePath;
  250. }
  251. public void setFilePath(String filePath) {
  252. this.filePath = filePath;
  253. }
  254. public Date getRectTm() {
  255. return rectTm;
  256. }
  257. public void setRectTm(Date rectTm) {
  258. this.rectTm = rectTm;
  259. }
  260. public String getRectPersId() {
  261. return rectPersId;
  262. }
  263. public void setRectPersId(String rectPersId) {
  264. this.rectPersId = rectPersId;
  265. }
  266. public String getRectPersName() {
  267. return rectPersName;
  268. }
  269. public void setRectPersName(String rectPersName) {
  270. this.rectPersName = rectPersName;
  271. }
  272. public String getState() {
  273. return state;
  274. }
  275. public void setState(String state) {
  276. this.state = state;
  277. }
  278. public String getNote() {
  279. return note;
  280. }
  281. public void setNote(String note) {
  282. this.note = note;
  283. }
  284. public String getPersId() {
  285. return persId;
  286. }
  287. public void setPersId(String persId) {
  288. this.persId = persId;
  289. }
  290. public String getPersName() {
  291. return persName;
  292. }
  293. public void setPersName(String persName) {
  294. this.persName = persName;
  295. }
  296. public Date getIntm() {
  297. return intm;
  298. }
  299. public void setIntm(Date intm) {
  300. this.intm = intm;
  301. }
  302. public Date getUptm() {
  303. return uptm;
  304. }
  305. public void setUptm(Date uptm) {
  306. this.uptm = uptm;
  307. }
  308. public String getDataStat() {
  309. return dataStat;
  310. }
  311. public void setDataStat(String dataStat) {
  312. this.dataStat = dataStat;
  313. }
  314. }