4ae9afaae6f0d04c7cd1a3072f9e1f6809256e10.svn-base 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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. * BisInspPlanYearParam
  9. *
  10. * @author lhc
  11. * @date 2022-3-3
  12. */
  13. public class BisInspPlanYearParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. private String adCode;
  19. // 年度
  20. @ApiParam(name = "年度")
  21. @ApiModelProperty(value = "年度", name = "chkYear")
  22. private Long chkYear;
  23. // 名 称
  24. @ApiParam(name = "名 称")
  25. @ApiModelProperty(value = "名 称", name = "chkName")
  26. private String chkName;
  27. // 类别
  28. @ApiParam(name = "类别")
  29. @ApiModelProperty(value = "类别", name = "chkType")
  30. private String chkType;
  31. // 计划开展时间(开始月)
  32. @ApiParam(name = "计划开展时间(开始月)")
  33. @ApiModelProperty(value = "计划开展时间(开始月)", name = "planSttm")
  34. private Date planSttm;
  35. // 计划开展时间(结束月)
  36. @ApiParam(name = "计划开展时间(结束月)")
  37. @ApiModelProperty(value = "计划开展时间(结束月)", name = "planEntm")
  38. private Date planEntm;
  39. // 牵头处室
  40. @ApiParam(name = "牵头处室")
  41. @ApiModelProperty(value = "牵头处室", name = "leadDep")
  42. private String leadDep; // 牵头处室
  43. @ApiParam(name = "牵头处室Id")
  44. @ApiModelProperty(value = "牵头处室Id", name = "leadDepId")
  45. private String leadDepId;
  46. // 参加处室、单位
  47. @ApiParam(name = "参加处室、单位")
  48. @ApiModelProperty(value = "参加处室、单位", name = "joinDep")
  49. private String joinDep;
  50. // 开展方式
  51. @ApiParam(name = "开展方式")
  52. @ApiModelProperty(value = "开展方式", name = "chkForm")
  53. private String chkForm;
  54. // 督查检查对象范围(市)
  55. @ApiParam(name = "督查检查对象范围(市)")
  56. @ApiModelProperty(value = "督查检查对象范围(市)", name = "chkScope")
  57. private String chkScope;
  58. // 开展依据
  59. @ApiParam(name = "开展依据")
  60. @ApiModelProperty(value = "开展依据", name = "chkRly")
  61. private String chkRly;
  62. // 备注
  63. @ApiParam(name = "备注")
  64. @ApiModelProperty(value = "备注", name = "note")
  65. private String note;
  66. // 创建人
  67. @ApiParam(name = "创建人")
  68. @ApiModelProperty(value = "创建人", name = "persId")
  69. private String persId;
  70. // 创建时间
  71. @ApiParam(name = "创建时间")
  72. @ApiModelProperty(value = "创建时间", name = "intm")
  73. private Date intm;
  74. // 修改时间
  75. @ApiParam(name = "修改时间")
  76. @ApiModelProperty(value = "修改时间", name = "uptm")
  77. private Date uptm;
  78. // 数据状态(0:正常;9:删除)
  79. @ApiParam(name = "数据状态(0:正常;9:删除)")
  80. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  81. private String dataStat;
  82. public String getState() {
  83. return state;
  84. }
  85. public void setState(String state) {
  86. this.state = state;
  87. }
  88. // 完结状态
  89. @ApiParam(name = "完结状态")
  90. @ApiModelProperty(value = "完结状态", name = "完结状态")
  91. private String state;
  92. @ApiParam(name = "序号")
  93. @ApiModelProperty(value = "序号", name = "ordr")
  94. private int ordr;
  95. private String objType;
  96. private String objName;
  97. @ApiModelProperty(value = "参建单位ID")
  98. private String planDpId;
  99. private String adGrad;
  100. /**
  101. * CHK_CONTENT
  102. * 详细计划 检查内容
  103. */
  104. @ApiModelProperty(value = "检查内容", name = "chkContent")
  105. private String chkContent ;
  106. public String getAdGrad() {
  107. return adGrad;
  108. }
  109. public void setAdGrad(String adGrad) {
  110. this.adGrad = adGrad;
  111. }
  112. public BisInspPlanYearParam() {
  113. }
  114. public String getId() {
  115. return id;
  116. }
  117. public void setId(String id) {
  118. this.id = id;
  119. }
  120. public String getAdCode() {
  121. return adCode;
  122. }
  123. public void setAdCode(String adCode) {
  124. this.adCode = adCode;
  125. }
  126. public Long getChkYear() {
  127. return chkYear;
  128. }
  129. public void setChkYear(Long chkYear) {
  130. this.chkYear = chkYear;
  131. }
  132. public String getChkName() {
  133. return chkName;
  134. }
  135. public void setChkName(String chkName) {
  136. this.chkName = chkName;
  137. }
  138. public String getChkType() {
  139. return chkType;
  140. }
  141. public void setChkType(String chkType) {
  142. this.chkType = chkType;
  143. }
  144. public Date getPlanSttm() {
  145. return planSttm;
  146. }
  147. public void setPlanSttm(Date planSttm) {
  148. this.planSttm = planSttm;
  149. }
  150. public Date getPlanEntm() {
  151. return planEntm;
  152. }
  153. public void setPlanEntm(Date planEntm) {
  154. this.planEntm = planEntm;
  155. }
  156. public String getLeadDep() {
  157. return leadDep;
  158. }
  159. public void setLeadDep(String leadDep) {
  160. this.leadDep = leadDep;
  161. }
  162. public String getJoinDep() {
  163. return joinDep;
  164. }
  165. public void setJoinDep(String joinDep) {
  166. this.joinDep = joinDep;
  167. }
  168. public String getChkForm() {
  169. return chkForm;
  170. }
  171. public void setChkForm(String chkForm) {
  172. this.chkForm = chkForm;
  173. }
  174. public String getChkScope() {
  175. return chkScope;
  176. }
  177. public void setChkScope(String chkScope) {
  178. this.chkScope = chkScope;
  179. }
  180. public String getChkRly() {
  181. return chkRly;
  182. }
  183. public void setChkRly(String chkRly) {
  184. this.chkRly = chkRly;
  185. }
  186. public String getNote() {
  187. return note;
  188. }
  189. public void setNote(String note) {
  190. this.note = note;
  191. }
  192. public String getPersId() {
  193. return persId;
  194. }
  195. public void setPersId(String persId) {
  196. this.persId = persId;
  197. }
  198. public Date getIntm() {
  199. return intm;
  200. }
  201. public void setIntm(Date intm) {
  202. this.intm = intm;
  203. }
  204. public Date getUptm() {
  205. return uptm;
  206. }
  207. public void setUptm(Date uptm) {
  208. this.uptm = uptm;
  209. }
  210. public String getDataStat() {
  211. return dataStat;
  212. }
  213. public void setDataStat(String dataStat) {
  214. this.dataStat = dataStat;
  215. }
  216. public int getOrdr() {
  217. return ordr;
  218. }
  219. public void setOrdr(int ordr) {
  220. this.ordr = ordr;
  221. }
  222. public String getObjType() {
  223. return objType;
  224. }
  225. public void setObjType(String objType) {
  226. this.objType = objType;
  227. }
  228. public String getObjName() {
  229. return objName;
  230. }
  231. public void setObjName(String objName) {
  232. this.objName = objName;
  233. }
  234. public String getPlanDpId() {
  235. return planDpId;
  236. }
  237. public void setPlanDpId(String planDpId) {
  238. this.planDpId = planDpId;
  239. }
  240. public String getChkContent() {
  241. return chkContent;
  242. }
  243. public void setChkContent(String chkContent) {
  244. this.chkContent = chkContent;
  245. }
  246. public String getLeadDepId() {
  247. return leadDepId;
  248. }
  249. public void setLeadDepId(String leadDepId) {
  250. this.leadDepId = leadDepId;
  251. }
  252. }