005935d83d6191fe2b6ee50797f7e1b5dd488715.svn-base 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import org.springframework.format.annotation.DateTimeFormat;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. /**
  10. * entity:TacPawpPdbst
  11. *
  12. * @author lune
  13. * @date 2019-6-19
  14. */
  15. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  16. public class TacPawpPdbst extends BaseBean implements Serializable {
  17. @ApiModelProperty("履行变更手续情况")
  18. private String dcphbcNumInfo;
  19. @ApiModelProperty("设计变更数量情况")
  20. private String desChgNumInfo;
  21. @ApiModelProperty("登记表ID")
  22. private String rgstrId;
  23. @ApiModelProperty("项目建议书名称")
  24. private String proposalName;
  25. @ApiModelProperty("项目建议书编制单位")
  26. private String proposalCmplUnit;
  27. @ApiModelProperty("项目建议书资质")
  28. private String proposalCmaf;
  29. @ApiModelProperty("项目建议书批复单位")
  30. private String proposalReplyUnit;
  31. @ApiModelProperty("项目建议书批复日期")
  32. @DateTimeFormat(pattern = "yyyy-MM-dd")
  33. @JsonFormat(pattern = "yyyy-MM-dd")
  34. private Date proposalReplyTm;
  35. @ApiModelProperty("项目建议书批复文号")
  36. private String proposalReplySn;
  37. @ApiModelProperty("可行性研究报告名称")
  38. private String fsrName;
  39. @ApiModelProperty("可行性研究报告编制单位")
  40. private String fsrCmplUnit;
  41. @ApiModelProperty("可行性研究报告资质")
  42. private String fsrCmaf;
  43. @ApiModelProperty("可行性研究报告批复单位")
  44. private String fsrReplyUnit;
  45. @ApiModelProperty("可行性研究报告批复日期")
  46. @DateTimeFormat(pattern = "yyyy-MM-dd")
  47. @JsonFormat(pattern = "yyyy-MM-dd")
  48. private Date fsrReplyTm;
  49. @ApiModelProperty("可行性研究报告批复文号")
  50. private String fsrReplySn;
  51. @ApiModelProperty("可行性研究报告概算投资")
  52. private Double fsrBeoi;
  53. @ApiModelProperty("初步设计报告名称")
  54. private String pdrName;
  55. @ApiModelProperty("初步设计报告编制单位")
  56. private String pdrCmplUnit;
  57. @ApiModelProperty("初步设计报告资质")
  58. private String pdrCmaf;
  59. @ApiModelProperty("初步设计报告批复单位")
  60. private String pdrReplyUnit;
  61. @ApiModelProperty("初步设计报告批复日期")
  62. @DateTimeFormat(pattern = "yyyy-MM-dd")
  63. @JsonFormat(pattern = "yyyy-MM-dd")
  64. private Date pdrReplyTm;
  65. @ApiModelProperty("初步设计报告批复文号")
  66. private String pdrReplySn;
  67. @ApiModelProperty("初步设计报告概算投资")
  68. private Double pdrBeoi;
  69. @ApiModelProperty("初步设计报告工期")
  70. private Double pdrPeriod;
  71. @ApiModelProperty("施工图设计编制单位名称")
  72. private String cadCmplUnit;
  73. @ApiModelProperty("施工图纸数量")
  74. private Long cadNum;
  75. @ApiModelProperty("是否满足施工需要(1:基本满足;2:不满足)")
  76. private String isMcn;
  77. @ApiModelProperty("设计变更数量")
  78. private Long desChgNum;
  79. @ApiModelProperty("已履行设计变更手续数量")
  80. private Long dcphbcNum;
  81. @ApiModelProperty("未履行设计变更手续数量")
  82. private Long ftcdcpNum;
  83. @ApiModelProperty("现场服务是否设立设代机构(1:是;2:否)")
  84. private String svcIsSuaa;
  85. @ApiModelProperty("现场服务是否派驻设计代表(1:是;2:否)")
  86. private String svcIsAdr;
  87. @ApiModelProperty("现场服务是否满足需要(1:基本满足;2:不满足)")
  88. private String svcIsMtd;
  89. @ApiModelProperty("其他说明")
  90. private String remark;
  91. @ApiModelProperty("备注")
  92. private String note;
  93. @ApiModelProperty("记录人员ID")
  94. private String persId;
  95. @ApiModelProperty("创建时间")
  96. private Date intm;
  97. @ApiModelProperty("修改时间")
  98. private Date uptm;
  99. @ApiModelProperty("数据状态(0:正常;9:删除)")
  100. private String dataStat;
  101. @ApiModelProperty("主键ID")
  102. private String id;
  103. @ApiModelProperty("前期与设计基本情况填报状态(0:未填报;1:填报中;2:已填报)")
  104. private String pdbstStat;
  105. public TacPawpPdbst() {
  106. }
  107. public String getDcphbcNumInfo() {
  108. return dcphbcNumInfo;
  109. }
  110. public void setDcphbcNumInfo(String dcphbcNumInfo) {
  111. this.dcphbcNumInfo = dcphbcNumInfo;
  112. }
  113. public String getDesChgNumInfo() {
  114. return desChgNumInfo;
  115. }
  116. public void setDesChgNumInfo(String desChgNumInfo) {
  117. this.desChgNumInfo = desChgNumInfo;
  118. }
  119. public String getPdbstStat() {
  120. return pdbstStat;
  121. }
  122. public void setPdbstStat(String pdbstStat) {
  123. this.pdbstStat = pdbstStat;
  124. }
  125. @Override
  126. public String getRgstrId() {
  127. return rgstrId;
  128. }
  129. @Override
  130. public void setRgstrId(String rgstrId) {
  131. this.rgstrId = rgstrId;
  132. }
  133. public String getProposalName() {
  134. return proposalName;
  135. }
  136. public void setProposalName(String proposalName) {
  137. this.proposalName = proposalName;
  138. }
  139. public String getProposalCmplUnit() {
  140. return proposalCmplUnit;
  141. }
  142. public void setProposalCmplUnit(String proposalCmplUnit) {
  143. this.proposalCmplUnit = proposalCmplUnit;
  144. }
  145. public String getProposalCmaf() {
  146. return proposalCmaf;
  147. }
  148. public void setProposalCmaf(String proposalCmaf) {
  149. this.proposalCmaf = proposalCmaf;
  150. }
  151. public String getProposalReplyUnit() {
  152. return proposalReplyUnit;
  153. }
  154. public void setProposalReplyUnit(String proposalReplyUnit) {
  155. this.proposalReplyUnit = proposalReplyUnit;
  156. }
  157. public Date getProposalReplyTm() {
  158. return proposalReplyTm;
  159. }
  160. public void setProposalReplyTm(Date proposalReplyTm) {
  161. this.proposalReplyTm = proposalReplyTm;
  162. }
  163. public String getProposalReplySn() {
  164. return proposalReplySn;
  165. }
  166. public void setProposalReplySn(String proposalReplySn) {
  167. this.proposalReplySn = proposalReplySn;
  168. }
  169. public String getFsrName() {
  170. return fsrName;
  171. }
  172. public void setFsrName(String fsrName) {
  173. this.fsrName = fsrName;
  174. }
  175. public String getFsrCmplUnit() {
  176. return fsrCmplUnit;
  177. }
  178. public void setFsrCmplUnit(String fsrCmplUnit) {
  179. this.fsrCmplUnit = fsrCmplUnit;
  180. }
  181. public String getFsrCmaf() {
  182. return fsrCmaf;
  183. }
  184. public void setFsrCmaf(String fsrCmaf) {
  185. this.fsrCmaf = fsrCmaf;
  186. }
  187. public String getFsrReplyUnit() {
  188. return fsrReplyUnit;
  189. }
  190. public void setFsrReplyUnit(String fsrReplyUnit) {
  191. this.fsrReplyUnit = fsrReplyUnit;
  192. }
  193. public Date getFsrReplyTm() {
  194. return fsrReplyTm;
  195. }
  196. public void setFsrReplyTm(Date fsrReplyTm) {
  197. this.fsrReplyTm = fsrReplyTm;
  198. }
  199. public String getFsrReplySn() {
  200. return fsrReplySn;
  201. }
  202. public void setFsrReplySn(String fsrReplySn) {
  203. this.fsrReplySn = fsrReplySn;
  204. }
  205. public Double getFsrBeoi() {
  206. return fsrBeoi;
  207. }
  208. public void setFsrBeoi(Double fsrBeoi) {
  209. this.fsrBeoi = fsrBeoi;
  210. }
  211. public String getPdrName() {
  212. return pdrName;
  213. }
  214. public void setPdrName(String pdrName) {
  215. this.pdrName = pdrName;
  216. }
  217. public String getPdrCmplUnit() {
  218. return pdrCmplUnit;
  219. }
  220. public void setPdrCmplUnit(String pdrCmplUnit) {
  221. this.pdrCmplUnit = pdrCmplUnit;
  222. }
  223. public String getPdrCmaf() {
  224. return pdrCmaf;
  225. }
  226. public void setPdrCmaf(String pdrCmaf) {
  227. this.pdrCmaf = pdrCmaf;
  228. }
  229. public String getPdrReplyUnit() {
  230. return pdrReplyUnit;
  231. }
  232. public void setPdrReplyUnit(String pdrReplyUnit) {
  233. this.pdrReplyUnit = pdrReplyUnit;
  234. }
  235. public Date getPdrReplyTm() {
  236. return pdrReplyTm;
  237. }
  238. public void setPdrReplyTm(Date pdrReplyTm) {
  239. this.pdrReplyTm = pdrReplyTm;
  240. }
  241. public String getPdrReplySn() {
  242. return pdrReplySn;
  243. }
  244. public void setPdrReplySn(String pdrReplySn) {
  245. this.pdrReplySn = pdrReplySn;
  246. }
  247. public Double getPdrBeoi() {
  248. return pdrBeoi;
  249. }
  250. public void setPdrBeoi(Double pdrBeoi) {
  251. this.pdrBeoi = pdrBeoi;
  252. }
  253. public Double getPdrPeriod() {
  254. return pdrPeriod;
  255. }
  256. public void setPdrPeriod(Double pdrPeriod) {
  257. this.pdrPeriod = pdrPeriod;
  258. }
  259. public String getCadCmplUnit() {
  260. return cadCmplUnit;
  261. }
  262. public void setCadCmplUnit(String cadCmplUnit) {
  263. this.cadCmplUnit = cadCmplUnit;
  264. }
  265. public Long getCadNum() {
  266. return cadNum;
  267. }
  268. public void setCadNum(Long cadNum) {
  269. this.cadNum = cadNum;
  270. }
  271. public String getIsMcn() {
  272. return isMcn;
  273. }
  274. public void setIsMcn(String isMcn) {
  275. this.isMcn = isMcn;
  276. }
  277. public Long getDesChgNum() {
  278. return desChgNum;
  279. }
  280. public void setDesChgNum(Long desChgNum) {
  281. this.desChgNum = desChgNum;
  282. }
  283. public Long getDcphbcNum() {
  284. return dcphbcNum;
  285. }
  286. public void setDcphbcNum(Long dcphbcNum) {
  287. this.dcphbcNum = dcphbcNum;
  288. }
  289. public Long getFtcdcpNum() {
  290. return ftcdcpNum;
  291. }
  292. public void setFtcdcpNum(Long ftcdcpNum) {
  293. this.ftcdcpNum = ftcdcpNum;
  294. }
  295. public String getSvcIsSuaa() {
  296. return svcIsSuaa;
  297. }
  298. public void setSvcIsSuaa(String svcIsSuaa) {
  299. this.svcIsSuaa = svcIsSuaa;
  300. }
  301. public String getSvcIsAdr() {
  302. return svcIsAdr;
  303. }
  304. public void setSvcIsAdr(String svcIsAdr) {
  305. this.svcIsAdr = svcIsAdr;
  306. }
  307. public String getSvcIsMtd() {
  308. return svcIsMtd;
  309. }
  310. public void setSvcIsMtd(String svcIsMtd) {
  311. this.svcIsMtd = svcIsMtd;
  312. }
  313. public String getRemark() {
  314. return remark;
  315. }
  316. public void setRemark(String remark) {
  317. this.remark = remark;
  318. }
  319. public String getNote() {
  320. return note;
  321. }
  322. public void setNote(String note) {
  323. this.note = note;
  324. }
  325. public String getPersId() {
  326. return persId;
  327. }
  328. public void setPersId(String persId) {
  329. this.persId = persId;
  330. }
  331. public Date getIntm() {
  332. return intm;
  333. }
  334. public void setIntm(Date intm) {
  335. this.intm = intm;
  336. }
  337. public Date getUptm() {
  338. return uptm;
  339. }
  340. public void setUptm(Date uptm) {
  341. this.uptm = uptm;
  342. }
  343. public String getDataStat() {
  344. return dataStat;
  345. }
  346. public void setDataStat(String dataStat) {
  347. this.dataStat = dataStat;
  348. }
  349. public String getId() {
  350. return id;
  351. }
  352. public void setId(String id) {
  353. this.id = id;
  354. }
  355. @Override
  356. public String toString() {
  357. return "TacPawpPdbst [" + "rgstrId=" + rgstrId + ", proposalName=" + proposalName + ", proposalCmplUnit=" + proposalCmplUnit + ", proposalCmaf=" + proposalCmaf + ", proposalReplyUnit=" + proposalReplyUnit + ", proposalReplyTm=" + proposalReplyTm + ", proposalReplySn=" + proposalReplySn + ", fsrName=" + fsrName + ", fsrCmplUnit=" + fsrCmplUnit + ", fsrCmaf=" + fsrCmaf + ", fsrReplyUnit=" + fsrReplyUnit + ", fsrReplyTm=" + fsrReplyTm + ", fsrReplySn=" + fsrReplySn + ", fsrBeoi=" + fsrBeoi + ", pdrName=" + pdrName + ", pdrCmplUnit=" + pdrCmplUnit + ", pdrCmaf=" + pdrCmaf + ", pdrReplyUnit=" + pdrReplyUnit + ", pdrReplyTm=" + pdrReplyTm + ", pdrReplySn=" + pdrReplySn + ", pdrBeoi=" + pdrBeoi + ", pdrPeriod=" + pdrPeriod + ", cadCmplUnit=" + cadCmplUnit + ", cadNum=" + cadNum + ", isMcn=" + isMcn + ", desChgNum=" + desChgNum + ", dcphbcNum=" + dcphbcNum + ", ftcdcpNum=" + ftcdcpNum + ", svcIsSuaa=" + svcIsSuaa + ", svcIsAdr=" + svcIsAdr + ", svcIsMtd=" + svcIsMtd + ", remark=" + remark + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", id=" + id + "]";
  358. }
  359. }