90a7fbb0bf071f98f609c1e95f77e0e1c314791c.svn-base 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import io.swagger.annotations.ApiParam;
  8. /**
  9. * entity:BisInspPlanYearPrg
  10. *
  11. * @author lhc
  12. * @date 2022-3-3
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class BisInspPlanYearPrg extends BaseBean implements Serializable {
  16. // ID
  17. @ApiModelProperty(value = "ID", name = "id")
  18. private String id;
  19. // 年度计划关联ID
  20. @ApiModelProperty(value = "年度计划关联ID", name = "chkYearId")
  21. private String chkYearId;
  22. @ApiModelProperty(value = "年度计划年度", name = "chkYear")
  23. private String chkYear;
  24. // 检查形式
  25. @ApiModelProperty(value = "检查形式", name = "chkForm")
  26. private String chkForm;
  27. // 年月
  28. @ApiModelProperty(value = "年月", name = "chkMnth")
  29. private Date chkMnth;
  30. // 检查事项名称
  31. @ApiModelProperty(value = "检查事项名称", name = "objTypeNm")
  32. private String objTypeNm;
  33. // 开展方式名称
  34. @ApiModelProperty(value = "开展方式名称", name = "chkFormNm")
  35. private String chkFormNm;
  36. // 开展开始时间
  37. @ApiModelProperty(value = "开展开始时间", name = "sttm")
  38. private Date sttm;
  39. // next_sttm
  40. @ApiModelProperty(value = "次月开始时间", name = "nextSttm")
  41. private Date nextSttm;
  42. // 次月结束时间next_entm
  43. @ApiModelProperty(value = "次月结束时间", name = "nextEntm")
  44. private Date nextEntm;
  45. // 次月地址addvnm
  46. @ApiModelProperty(value = "次月检查地点", name = "addvnm")
  47. private String addvnm;
  48. // 次月地址addvcd
  49. @ApiModelProperty(value = "次月检查地点区划", name = "addvcd")
  50. private String addvcd;
  51. public Date getSttm() {
  52. return sttm;
  53. }
  54. public void setSttm(Date sttm) {
  55. this.sttm = sttm;
  56. }
  57. public Date getEntm() {
  58. return entm;
  59. }
  60. public void setEntm(Date entm) {
  61. this.entm = entm;
  62. }
  63. public String getIsFinish() {
  64. return isFinish;
  65. }
  66. public void setIsFinish(String isFinish) {
  67. this.isFinish = isFinish;
  68. }
  69. public String getObjType() {
  70. return objType;
  71. }
  72. public void setObjType(String objType) {
  73. this.objType = objType;
  74. }
  75. // 开展结束时间
  76. @ApiModelProperty(value = "开展开始时间", name = "entm")
  77. private Date entm;
  78. // 监督检查开展情况
  79. @ApiModelProperty(value = "监督检查开展情况", name = "chkNote")
  80. private String chkNote;
  81. // 检查组次
  82. @ApiModelProperty(value = "检查组次", name = "chkGroup")
  83. private Long chkGroup;
  84. // 检查人次
  85. @ApiModelProperty(value = "检查人次", name = "chkPers")
  86. private Long chkPers;
  87. // 检查发现问题数
  88. @ApiModelProperty(value = "检查发现问题数", name = "chkPblm")
  89. private Long chkPblm;
  90. // 厅领导参加检查人次
  91. @ApiModelProperty(value = "厅领导参加检查人次", name = "chkLeder")
  92. private Long chkLeder;
  93. // 当月培训期次
  94. @ApiModelProperty(value = "当月培训期次", name = "trainNum")
  95. private Long trainNum;
  96. // 参加培训人数
  97. @ApiModelProperty(value = "参加培训人数", name = "trainPers")
  98. private Long trainPers;
  99. // 是否完成年度计划
  100. @ApiModelProperty(value = "是否完成年度计划", name = "isF")
  101. private String isFinish;
  102. // 下一月计划
  103. @ApiModelProperty(value = "下一月计划", name = "nextPlan")
  104. private String nextPlan;
  105. // 备注
  106. @ApiModelProperty(value = "备注", name = "note")
  107. private String note;
  108. // 创建人
  109. @ApiModelProperty(value = "创建人", name = "persId")
  110. private String persId;
  111. // 创建时间
  112. @ApiModelProperty(value = "创建时间", name = "intm")
  113. private Date intm;
  114. // 修改时间
  115. @ApiModelProperty(value = "修改时间", name = "uptm")
  116. private Date uptm;
  117. // 数据状态(0:正常;9:删除)
  118. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  119. private String dataStat;
  120. // 名 称
  121. @ApiModelProperty(value = "名 称", name = "chkName")
  122. private String chkName;
  123. // 组织处室单位
  124. @ApiModelProperty(value = "牵头处室", name = "leadDep")
  125. private String leadDep;
  126. //监督检查事项
  127. @ApiParam(name = "OBJ_TYPE")
  128. @ApiModelProperty(value = "OBJ_TYPE", name = "objType")
  129. private String objType;
  130. // 参加处室、单位
  131. @ApiModelProperty(value = "参加处室、单位", name = "joinDep")
  132. private String joinDep;
  133. public String getAdCode() {
  134. return adCode;
  135. }
  136. public void setAdCode(String adCode) {
  137. this.adCode = adCode;
  138. }
  139. @ApiModelProperty(value = "行政区划代码", name = "adCode")
  140. private String adCode;
  141. public String getChkName() {
  142. return chkName;
  143. }
  144. public void setChkName(String chkName) {
  145. this.chkName = chkName;
  146. }
  147. public String getLeadDep() {
  148. return leadDep;
  149. }
  150. public void setLeadDep(String leadDep) {
  151. this.leadDep = leadDep;
  152. }
  153. public String getJoinDep() {
  154. return joinDep;
  155. }
  156. public void setJoinDep(String joinDep) {
  157. this.joinDep = joinDep;
  158. }
  159. public String getChkForm1() {
  160. return chkForm1;
  161. }
  162. public void setChkForm1(String chkForm1) {
  163. this.chkForm1 = chkForm1;
  164. }
  165. // 开展方式
  166. @ApiModelProperty(value = "开展方式", name = "chkForm1")
  167. private String chkForm1;
  168. /**
  169. * 是否计划内 1是2否
  170. */
  171. @ApiModelProperty(value = "是否计划内 1是2否", name = "isPlanned")
  172. private String isPlanned;
  173. /**
  174. * 计划外开展名称
  175. */
  176. @ApiModelProperty(value = "计划外开展名称", name = "unplannedChkNm")
  177. private String unplannedChkNm;
  178. public BisInspPlanYearPrg() {
  179. }
  180. public String getId() {
  181. return id;
  182. }
  183. public void setId(String id) {
  184. this.id = id;
  185. }
  186. public String getChkYearId() {
  187. return chkYearId;
  188. }
  189. public void setChkYearId(String chkYearId) {
  190. this.chkYearId = chkYearId;
  191. }
  192. public String getChkForm() {
  193. return chkForm;
  194. }
  195. public void setChkForm(String chkForm) {
  196. this.chkForm = chkForm;
  197. }
  198. public Date getChkMnth() {
  199. return chkMnth;
  200. }
  201. public void setChkMnth(Date chkMnth) {
  202. this.chkMnth = chkMnth;
  203. }
  204. public String getChkNote() {
  205. return chkNote;
  206. }
  207. public void setChkNote(String chkNote) {
  208. this.chkNote = chkNote;
  209. }
  210. public Long getChkGroup() {
  211. return chkGroup;
  212. }
  213. public void setChkGroup(Long chkGroup) {
  214. this.chkGroup = chkGroup;
  215. }
  216. public Long getChkPers() {
  217. return chkPers;
  218. }
  219. public void setChkPers(Long chkPers) {
  220. this.chkPers = chkPers;
  221. }
  222. public Long getChkPblm() {
  223. return chkPblm;
  224. }
  225. public void setChkPblm(Long chkPblm) {
  226. this.chkPblm = chkPblm;
  227. }
  228. public Long getChkLeder() {
  229. return chkLeder;
  230. }
  231. public void setChkLeder(Long chkLeder) {
  232. this.chkLeder = chkLeder;
  233. }
  234. public Long getTrainNum() {
  235. return trainNum;
  236. }
  237. public void setTrainNum(Long trainNum) {
  238. this.trainNum = trainNum;
  239. }
  240. public Long getTrainPers() {
  241. return trainPers;
  242. }
  243. public void setTrainPers(Long trainPers) {
  244. this.trainPers = trainPers;
  245. }
  246. public String getNextPlan() {
  247. return nextPlan;
  248. }
  249. public void setNextPlan(String nextPlan) {
  250. this.nextPlan = nextPlan;
  251. }
  252. public String getNote() {
  253. return note;
  254. }
  255. public void setNote(String note) {
  256. this.note = note;
  257. }
  258. public String getPersId() {
  259. return persId;
  260. }
  261. public void setPersId(String persId) {
  262. this.persId = persId;
  263. }
  264. public Date getIntm() {
  265. return intm;
  266. }
  267. public void setIntm(Date intm) {
  268. this.intm = intm;
  269. }
  270. public Date getUptm() {
  271. return uptm;
  272. }
  273. public void setUptm(Date uptm) {
  274. this.uptm = uptm;
  275. }
  276. public String getDataStat() {
  277. return dataStat;
  278. }
  279. public void setDataStat(String dataStat) {
  280. this.dataStat = dataStat;
  281. }
  282. public String getObjTypeNm() {
  283. return objTypeNm;
  284. }
  285. public void setObjTypeNm(String objTypeNm) {
  286. this.objTypeNm = objTypeNm;
  287. }
  288. public String getChkFormNm() {
  289. return chkFormNm;
  290. }
  291. public void setChkFormNm(String chkFormNm) {
  292. this.chkFormNm = chkFormNm;
  293. }
  294. public String getIsPlanned() {
  295. return isPlanned;
  296. }
  297. public void setIsPlanned(String isPlanned) {
  298. this.isPlanned = isPlanned;
  299. }
  300. public String getUnplannedChkNm() {
  301. return unplannedChkNm;
  302. }
  303. public void setUnplannedChkNm(String unplannedChkNm) {
  304. this.unplannedChkNm = unplannedChkNm;
  305. }
  306. public String getChkYear() {
  307. return chkYear;
  308. }
  309. public void setChkYear(String chkYear) {
  310. this.chkYear = chkYear;
  311. }
  312. @Override
  313. public String toString() {
  314. return "BisInspPlanYearPrg{" +
  315. "id='" + id + '\'' +
  316. ", chkYearId='" + chkYearId + '\'' +
  317. ", chkForm='" + chkForm + '\'' +
  318. ", chkMnth=" + chkMnth +
  319. ", objTypeNm='" + objTypeNm + '\'' +
  320. ", chkFormNm='" + chkFormNm + '\'' +
  321. ", sttm=" + sttm +
  322. ", entm=" + entm +
  323. ", chkNote='" + chkNote + '\'' +
  324. ", chkGroup=" + chkGroup +
  325. ", chkPers=" + chkPers +
  326. ", chkPblm=" + chkPblm +
  327. ", chkLeder=" + chkLeder +
  328. ", trainNum=" + trainNum +
  329. ", trainPers=" + trainPers +
  330. ", isFinish='" + isFinish + '\'' +
  331. ", nextPlan='" + nextPlan + '\'' +
  332. ", note='" + note + '\'' +
  333. ", persId='" + persId + '\'' +
  334. ", intm=" + intm +
  335. ", uptm=" + uptm +
  336. ", dataStat='" + dataStat + '\'' +
  337. ", chkYear='" + chkYear + '\'' +
  338. ", chkName='" + chkName + '\'' +
  339. ", leadDep='" + leadDep + '\'' +
  340. ", objType='" + objType + '\'' +
  341. ", joinDep='" + joinDep + '\'' +
  342. ", adCode='" + adCode + '\'' +
  343. ", chkForm1='" + chkForm1 + '\'' +
  344. ", isPlanned='" + isPlanned + '\'' +
  345. ", unplannedChkNm='" + unplannedChkNm + '\'' +
  346. '}';
  347. }
  348. public Date getNextSttm() {
  349. return nextSttm;
  350. }
  351. public void setNextSttm(Date nextSttm) {
  352. this.nextSttm = nextSttm;
  353. }
  354. public Date getNextEntm() {
  355. return nextEntm;
  356. }
  357. public void setNextEntm(Date nextEntm) {
  358. this.nextEntm = nextEntm;
  359. }
  360. public String getAddvnm() {
  361. return addvnm;
  362. }
  363. public void setAddvnm(String addvnm) {
  364. this.addvnm = addvnm;
  365. }
  366. public String getAddvcd() {
  367. return addvcd;
  368. }
  369. public void setAddvcd(String addvcd) {
  370. this.addvcd = addvcd;
  371. }
  372. }