9b933f652a3b0830dacd26a049fc823ab2358004.svn-base 7.7 KB

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