0738613b535ac25caa0db70bfd8c36e12d6072ff.svn-base 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  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:TacPblmInfo
  10. *
  11. * @author lune
  12. * @date 2019-6-19
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class TacPblmInfo extends BaseBean implements Serializable {
  16. @ApiModelProperty("主键ID")
  17. private String id;
  18. @ApiModelProperty("督查问题类型")
  19. private String objType;
  20. @ApiModelProperty("督查对象id")
  21. private String objId;
  22. @ApiModelProperty("严重等级:0一般,1较重,2严重")
  23. private String pblmPasi;
  24. @ApiModelProperty("是否典型问题")
  25. private String ifCasePblm="0";
  26. @ApiModelProperty("主体单位性质id,多个id用','分隔")
  27. private String subjectIds;
  28. @ApiModelProperty("主体单位名称,多个名称用','分隔")
  29. private String subjectNames;
  30. @ApiModelProperty("存在问题描述")
  31. private String pblmDesc;
  32. @ApiModelProperty("问题原因分析")
  33. private String pblmReason;
  34. @ApiModelProperty("整改意见或建议")
  35. private String pblmSggtn;
  36. @ApiModelProperty("问题序号")
  37. private String pblmSn;
  38. @ApiModelProperty("稽察问题标准库id")
  39. private String pblmstdId;
  40. @ApiModelProperty("复查意见id")
  41. private String rectId;
  42. @ApiModelProperty("登记表ID")
  43. private String rgstrId;
  44. @ApiModelProperty("工作底稿类型")
  45. private String listType;
  46. @ApiModelProperty("工作底稿ID")
  47. private String listId;
  48. @ApiModelProperty("稽察组ID")
  49. private String groupId;
  50. @ApiModelProperty("创建人ID(专家)")
  51. private String persId;
  52. @ApiModelProperty("专家姓名")
  53. private String persNm;
  54. @ApiModelProperty("创建时间(专家填写日期)")
  55. private Date intm;
  56. @ApiModelProperty("特派员ID")
  57. private String spclId;
  58. @ApiModelProperty("特派员姓名")
  59. private String spclNm;
  60. @ApiModelProperty("特派员复核意见")
  61. private String spclRvwOptn;
  62. @ApiModelProperty("特派员填写日期")
  63. private Date spclTm;
  64. @ApiModelProperty("更新时间")
  65. private Date uptm;
  66. @ApiModelProperty("是否有多媒体:0无,1有")
  67. private String hasVedio;
  68. @ApiModelProperty("问题名称")
  69. private String pblmNm;
  70. @ApiModelProperty("主体单位")
  71. private List<TacPblmSubject> pblmSubjectList;
  72. @ApiModelProperty("对应问题标准信息")
  73. private TacObjPblmstb tacObjPblmstb;
  74. @ApiModelProperty("附件信息")
  75. private List<GwComFile> gwComFileList;
  76. @ApiModelProperty("备注")
  77. private String note;
  78. @ApiModelProperty("排序")
  79. private int sn;
  80. @ApiModelProperty("问题定性编码")
  81. private int pblmQlttvCd;
  82. @ApiModelProperty("问题定性名称")
  83. private String pblmQlttvNm;
  84. @ApiModelProperty("是否立行立改(1:是;2:否)")
  85. private int isCpQa;
  86. @ApiModelProperty("数据状态0:暂存;1:已提交;2:已上报;3:退回;4:审核定稿;5:审办;6:整改通知;7:整改反馈;8:销号;9:删除;")
  87. private String dataStat;
  88. @ApiModelProperty("工程名")
  89. private String name;
  90. @ApiModelProperty("工程地址")
  91. private String location;
  92. @ApiModelProperty("项目组名")
  93. private String adName;
  94. @ApiModelProperty("行政编码")
  95. private String adCode;
  96. @ApiModelProperty("问题类型描述")
  97. private String pblmTypeDesc;
  98. @ApiModelProperty("原因分析状态(0:未删除,1:已删除)")
  99. private String reasonState;
  100. @ApiModelProperty("主要原因分析详细")
  101. private String pblmReasonDetail;
  102. @ApiModelProperty("措施建议")
  103. private String pblmMeasure;
  104. @ApiModelProperty("问题清单序号")
  105. private String pblmstdSn;
  106. @ApiModelProperty("是否清单问题")
  107. private String isPblmStbOth;
  108. @ApiModelProperty("清单外严重程度")
  109. private String pblmStbOthCate;
  110. @ApiModelProperty("清单外原因描述")
  111. private String pblmStbOthDesc;
  112. /**
  113. * 福建二期 -阶段问题表 增加字段 法律条款 法规内容 字段
  114. * 2023-01-28 lxf
  115. */
  116. @ApiModelProperty("相关法规")
  117. private String relativeLaw;
  118. @ApiModelProperty("法规内容")
  119. private String lawContent;
  120. public String getIsPblmStbOth() {
  121. return isPblmStbOth;
  122. }
  123. public void setIsPblmStbOth(String isPblmStbOth) {
  124. this.isPblmStbOth = isPblmStbOth;
  125. }
  126. public String getPblmStbOthCate() {
  127. return pblmStbOthCate;
  128. }
  129. public void setPblmStbOthCate(String pblmStbOthCate) {
  130. this.pblmStbOthCate = pblmStbOthCate;
  131. }
  132. public String getPblmStbOthDesc() {
  133. return pblmStbOthDesc;
  134. }
  135. public void setPblmStbOthDesc(String pblmStbOthDesc) {
  136. this.pblmStbOthDesc = pblmStbOthDesc;
  137. }
  138. public String getPblmstdSn() {
  139. return pblmstdSn;
  140. }
  141. public void setPblmstdSn(String pblmstdSn) {
  142. this.pblmstdSn = pblmstdSn;
  143. }
  144. public String getPblmReasonDetail() {
  145. return pblmReasonDetail;
  146. }
  147. public void setPblmReasonDetail(String pblmReasonDetail) {
  148. this.pblmReasonDetail = pblmReasonDetail;
  149. }
  150. public String getPblmMeasure() {
  151. return pblmMeasure;
  152. }
  153. public void setPblmMeasure(String pblmMeasure) {
  154. this.pblmMeasure = pblmMeasure;
  155. }
  156. public String getReasonState() {
  157. return reasonState;
  158. }
  159. public void setReasonState(String reasonState) {
  160. this.reasonState = reasonState;
  161. }
  162. public String getPblmTypeDesc() {
  163. return pblmTypeDesc;
  164. }
  165. public void setPblmTypeDesc(String pblmTypeDesc) {
  166. this.pblmTypeDesc = pblmTypeDesc;
  167. }
  168. public String getName() {
  169. return name;
  170. }
  171. public void setName(String name) {
  172. this.name = name;
  173. }
  174. public String getLocation() {
  175. return location;
  176. }
  177. public void setLocation(String location) {
  178. this.location = location;
  179. }
  180. public String getAdName() {
  181. return adName;
  182. }
  183. public void setAdName(String adName) {
  184. this.adName = adName;
  185. }
  186. public String getAdCode() {
  187. return adCode;
  188. }
  189. public void setAdCode(String adCode) {
  190. this.adCode = adCode;
  191. }
  192. public TacPblmInfo() {
  193. }
  194. public String getDataStat() {
  195. return dataStat;
  196. }
  197. public void setDataStat(String dataStat) {
  198. this.dataStat = dataStat;
  199. }
  200. public int getPblmQlttvCd() {
  201. return pblmQlttvCd;
  202. }
  203. public void setPblmQlttvCd(int pblmQlttvCd) {
  204. this.pblmQlttvCd = pblmQlttvCd;
  205. }
  206. public String getPblmQlttvNm() {
  207. return pblmQlttvNm;
  208. }
  209. public void setPblmQlttvNm(String pblmQlttvNm) {
  210. this.pblmQlttvNm = pblmQlttvNm;
  211. }
  212. public int getIsCpQa() {
  213. return isCpQa;
  214. }
  215. public void setIsCpQa(int isCpQa) {
  216. this.isCpQa = isCpQa;
  217. }
  218. public int getSn() {
  219. return sn;
  220. }
  221. public void setSn(int sn) {
  222. this.sn = sn;
  223. }
  224. public String getNote() {
  225. return note;
  226. }
  227. public void setNote(String note) {
  228. this.note = note;
  229. }
  230. public String getSubjectNames() {
  231. return subjectNames;
  232. }
  233. public void setSubjectNames(String subjectNames) {
  234. this.subjectNames = subjectNames;
  235. }
  236. public String getHasVedio() {
  237. return hasVedio;
  238. }
  239. public void setHasVedio(String hasVedio) {
  240. this.hasVedio = hasVedio;
  241. }
  242. public String getPblmNm() {
  243. return pblmNm;
  244. }
  245. public void setPblmNm(String pblmNm) {
  246. this.pblmNm = pblmNm;
  247. }
  248. public List<GwComFile> getGwComFileList() {
  249. return gwComFileList;
  250. }
  251. public void setGwComFileList(List<GwComFile> gwComFileList) {
  252. this.gwComFileList = gwComFileList;
  253. }
  254. public TacObjPblmstb getTacObjPblmstb() {
  255. return tacObjPblmstb;
  256. }
  257. public void setTacObjPblmstb(TacObjPblmstb tacObjPblmstb) {
  258. this.tacObjPblmstb = tacObjPblmstb;
  259. }
  260. public List<TacPblmSubject> getPblmSubjectList() {
  261. return pblmSubjectList;
  262. }
  263. public void setPblmSubjectList(List<TacPblmSubject> pblmSubjectList) {
  264. this.pblmSubjectList = pblmSubjectList;
  265. }
  266. public String getId() {
  267. return id;
  268. }
  269. public void setId(String id) {
  270. this.id = id;
  271. }
  272. public String getObjType() {
  273. return objType;
  274. }
  275. public void setObjType(String objType) {
  276. this.objType = objType;
  277. }
  278. @Override
  279. public String getObjId() {
  280. return objId;
  281. }
  282. @Override
  283. public void setObjId(String objId) {
  284. this.objId = objId;
  285. }
  286. public String getPblmPasi() {
  287. return pblmPasi;
  288. }
  289. public void setPblmPasi(String pblmPasi) {
  290. this.pblmPasi = pblmPasi;
  291. }
  292. public String getIfCasePblm() {
  293. return ifCasePblm;
  294. }
  295. public void setIfCasePblm(String ifCasePblm) {
  296. if(ifCasePblm !=null && !"".equals(ifCasePblm)){
  297. this.ifCasePblm = ifCasePblm;
  298. }
  299. }
  300. public String getSubjectIds() {
  301. return subjectIds;
  302. }
  303. public void setSubjectIds(String subjectIds) {
  304. this.subjectIds = subjectIds;
  305. }
  306. public String getPblmDesc() {
  307. return pblmDesc;
  308. }
  309. public void setPblmDesc(String pblmDesc) {
  310. this.pblmDesc = pblmDesc;
  311. }
  312. public String getPblmReason() {
  313. return pblmReason;
  314. }
  315. public void setPblmReason(String pblmReason) {
  316. this.pblmReason = pblmReason;
  317. }
  318. public String getPblmSggtn() {
  319. return pblmSggtn;
  320. }
  321. public void setPblmSggtn(String pblmSggtn) {
  322. this.pblmSggtn = pblmSggtn;
  323. }
  324. public String getPblmSn() {
  325. return pblmSn;
  326. }
  327. public void setPblmSn(String pblmSn) {
  328. this.pblmSn = pblmSn;
  329. }
  330. public String getPblmstdId() {
  331. return pblmstdId;
  332. }
  333. public void setPblmstdId(String pblmstdId) {
  334. this.pblmstdId = pblmstdId;
  335. }
  336. public String getRectId() {
  337. return rectId;
  338. }
  339. public void setRectId(String rectId) {
  340. this.rectId = rectId;
  341. }
  342. @Override
  343. public String getRgstrId() {
  344. return rgstrId;
  345. }
  346. @Override
  347. public void setRgstrId(String rgstrId) {
  348. this.rgstrId = rgstrId;
  349. }
  350. public String getListType() {
  351. return listType;
  352. }
  353. public void setListType(String listType) {
  354. this.listType = listType;
  355. }
  356. public String getListId() {
  357. return listId;
  358. }
  359. public void setListId(String listId) {
  360. this.listId = listId;
  361. }
  362. @Override
  363. public String getGroupId() {
  364. return groupId;
  365. }
  366. @Override
  367. public void setGroupId(String groupId) {
  368. this.groupId = groupId;
  369. }
  370. public String getPersId() {
  371. return persId;
  372. }
  373. public void setPersId(String persId) {
  374. this.persId = persId;
  375. }
  376. public String getPersNm() {
  377. return persNm;
  378. }
  379. public void setPersNm(String persNm) {
  380. this.persNm = persNm;
  381. }
  382. public Date getIntm() {
  383. return intm;
  384. }
  385. public void setIntm(Date intm) {
  386. this.intm = intm;
  387. }
  388. public String getSpclId() {
  389. return spclId;
  390. }
  391. public void setSpclId(String spclId) {
  392. this.spclId = spclId;
  393. }
  394. public String getSpclNm() {
  395. return spclNm;
  396. }
  397. public void setSpclNm(String spclNm) {
  398. this.spclNm = spclNm;
  399. }
  400. public String getSpclRvwOptn() {
  401. return spclRvwOptn;
  402. }
  403. public void setSpclRvwOptn(String spclRvwOptn) {
  404. this.spclRvwOptn = spclRvwOptn;
  405. }
  406. public Date getSpclTm() {
  407. return spclTm;
  408. }
  409. public void setSpclTm(Date spclTm) {
  410. this.spclTm = spclTm;
  411. }
  412. public Date getUptm() {
  413. return uptm;
  414. }
  415. public void setUptm(Date uptm) {
  416. this.uptm = uptm;
  417. }
  418. public String getRelativeLaw() {
  419. return relativeLaw;
  420. }
  421. public void setRelativeLaw(String relativeLaw) {
  422. this.relativeLaw = relativeLaw;
  423. }
  424. public String getLawContent() {
  425. return lawContent;
  426. }
  427. public void setLawContent(String lawContent) {
  428. this.lawContent = lawContent;
  429. }
  430. @Override
  431. public String toString() {
  432. return "TacPblmInfo [" + "id=" + id + ", objType=" + objType + ", objId=" + objId + ", pblmPasi=" + pblmPasi + ", ifCasePblm=" + ifCasePblm + ", subjectIds=" + subjectIds + ", pblmDesc=" + pblmDesc + ", pblmReason=" + pblmReason + ", pblmSggtn=" + pblmSggtn + ", pblmSn=" + pblmSn + ", pblmstdId=" + pblmstdId + ", rectId=" + rectId + ", rgstrId=" + rgstrId + ", listType=" + listType + ", listId=" + listId + ", groupId=" + groupId + ", persId=" + persId + ", persNm=" + persNm + ", intm=" + intm + ", spclId=" + spclId + ", spclNm=" + spclNm + ", spclRvwOptn=" + spclRvwOptn + ", spclTm=" + spclTm + ", uptm=" + uptm+ ", relativeLaw=" + relativeLaw+ ", lawContent=" + lawContent + "]";
  433. }
  434. }