d92f1b8c35b896790b758604a6b144ef350d87c0.svn-base 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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. * BisInspPlanDtlParam
  9. *
  10. * @author hjp
  11. * @date 2022-8-9
  12. */
  13. public class BisInspPlanDtlParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 名称
  19. @ApiModelProperty(value = "nm", name = "nm")
  20. private String nm;
  21. // 年度计划ID
  22. @ApiParam(name = "年度计划ID")
  23. @ApiModelProperty(value = "年度计划ID", name = "planId")
  24. private String planId;
  25. // 检查开始时间
  26. @ApiParam(name = "检查开始时间")
  27. @ApiModelProperty(value = "检查开始时间", name = "stTm")
  28. private Date stTm;
  29. // 检查结束时间
  30. @ApiParam(name = "检查结束时间")
  31. @ApiModelProperty(value = "检查结束时间", name = "enTm")
  32. private Date enTm;
  33. // 计划检查项目数量
  34. @ApiParam(name = "计划检查项目数量")
  35. @ApiModelProperty(value = "计划检查项目数量", name = "chkPrjSize")
  36. private Long chkPrjSize;
  37. // 开展方式
  38. @ApiParam(name = "开展方式")
  39. @ApiModelProperty(value = "开展方式", name = "chkType")
  40. private String chkType;
  41. // 工作形式 1线上(水利监督信息系统)2线下
  42. @ApiParam(name = "工作形式 1线上(水利监督信息系统)2线下")
  43. @ApiModelProperty(value = "工作形式 1线上(水利监督信息系统)2线下", name = "onlineChk")
  44. private String onlineChk;
  45. private String note;
  46. // 创建人
  47. @ApiParam(name = "创建人")
  48. @ApiModelProperty(value = "创建人", name = "persId")
  49. private String persId;
  50. // 创建时间
  51. @ApiParam(name = "创建时间")
  52. @ApiModelProperty(value = "创建时间", name = "intm")
  53. private Date intm;
  54. // 修改时间
  55. @ApiParam(name = "修改时间")
  56. @ApiModelProperty(value = "修改时间", name = "uptm")
  57. private Date uptm;
  58. // 数据状态
  59. @ApiParam(name = "数据状态")
  60. @ApiModelProperty(value = "数据状态", name = "dataStat")
  61. private String dataStat;
  62. /**
  63. * 年度
  64. */
  65. private String yearStr;
  66. /**
  67. * 月份
  68. */
  69. private String monthStr;
  70. /**
  71. * 是否重复 0 否 1 是 空 null 所有
  72. */
  73. private String isItRedundant;
  74. /**
  75. * 检查单位 ID
  76. */
  77. private String planDpId;
  78. private String ddAdCode;
  79. /**
  80. * 年度
  81. */
  82. private Long chkYear;
  83. /**
  84. * CHK_CONTENT
  85. * 详细计划 检查内容
  86. */
  87. @ApiParam(name = "检查内容")
  88. @ApiModelProperty(value = "检查内容", name = "chkContent")
  89. private String chkContent ;
  90. /**
  91. * CHK_IMPL_DEPT
  92. * 开展检查实施处室(单位),多个以英文逗号隔开
  93. */
  94. @ApiParam(name = "开展检查实施处室")
  95. @ApiModelProperty(value = "开展检查实施处室", name = "chkImplDept")
  96. private String chkImplDept ;
  97. @ApiParam(name = "开展检查实施处室")
  98. @ApiModelProperty(value = "牵头处室ID",name = "leadDepId")
  99. private String leadDepId;
  100. public BisInspPlanDtlParam() {
  101. }
  102. public Long getChkYear() {
  103. return chkYear;
  104. }
  105. public void setChkYear(Long chkYear) {
  106. this.chkYear = chkYear;
  107. }
  108. public String getDdAdCode() {
  109. return ddAdCode;
  110. }
  111. public void setDdAdCode(String ddAdCode) {
  112. this.ddAdCode = ddAdCode;
  113. }
  114. public String getId() {
  115. return id;
  116. }
  117. public void setId(String id) {
  118. this.id = id;
  119. }
  120. public String getPlanId() {
  121. return planId;
  122. }
  123. public void setPlanId(String planId) {
  124. this.planId = planId;
  125. }
  126. public Date getStTm() {
  127. return stTm;
  128. }
  129. public void setStTm(Date stTm) {
  130. this.stTm = stTm;
  131. }
  132. public Date getEnTm() {
  133. return enTm;
  134. }
  135. public void setEnTm(Date enTm) {
  136. this.enTm = enTm;
  137. }
  138. public Long getChkPrjSize() {
  139. return chkPrjSize;
  140. }
  141. public void setChkPrjSize(Long chkPrjSize) {
  142. this.chkPrjSize = chkPrjSize;
  143. }
  144. public String getChkType() {
  145. return chkType;
  146. }
  147. public void setChkType(String chkType) {
  148. this.chkType = chkType;
  149. }
  150. public String getOnlineChk() {
  151. return onlineChk;
  152. }
  153. public void setOnlineChk(String onlineChk) {
  154. this.onlineChk = onlineChk;
  155. }
  156. public String getNote() {
  157. return note;
  158. }
  159. public void setNote(String note) {
  160. this.note = note;
  161. }
  162. public String getPersId() {
  163. return persId;
  164. }
  165. public void setPersId(String persId) {
  166. this.persId = persId;
  167. }
  168. public Date getIntm() {
  169. return intm;
  170. }
  171. public void setIntm(Date intm) {
  172. this.intm = intm;
  173. }
  174. public Date getUptm() {
  175. return uptm;
  176. }
  177. public void setUptm(Date uptm) {
  178. this.uptm = uptm;
  179. }
  180. public String getDataStat() {
  181. return dataStat;
  182. }
  183. public void setDataStat(String dataStat) {
  184. this.dataStat = dataStat;
  185. }
  186. public String getYearStr() {
  187. return yearStr;
  188. }
  189. public void setYearStr(String yearStr) {
  190. this.yearStr = yearStr;
  191. }
  192. public String getMonthStr() {
  193. return monthStr;
  194. }
  195. public void setMonthStr(String monthStr) {
  196. this.monthStr = monthStr;
  197. }
  198. public String getIsItRedundant() {
  199. return isItRedundant;
  200. }
  201. public void setIsItRedundant(String isItRedundant) {
  202. this.isItRedundant = isItRedundant;
  203. }
  204. public String getPlanDpId() {
  205. return planDpId;
  206. }
  207. public void setPlanDpId(String planDpId) {
  208. this.planDpId = planDpId;
  209. }
  210. public String getNm() {
  211. return nm;
  212. }
  213. public void setNm(String nm) {
  214. this.nm = nm;
  215. }
  216. public String getChkContent() {
  217. return chkContent;
  218. }
  219. public void setChkContent(String chkContent) {
  220. this.chkContent = chkContent;
  221. }
  222. public String getChkImplDept() {
  223. return chkImplDept;
  224. }
  225. public void setChkImplDept(String chkImplDept) {
  226. this.chkImplDept = chkImplDept;
  227. }
  228. public String getLeadDepId() {
  229. return leadDepId;
  230. }
  231. public void setLeadDepId(String leadDepId) {
  232. this.leadDepId = leadDepId;
  233. }
  234. }