384a66c3b870f86cebd7025662161fd4076c9bef.svn-base 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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 io.swagger.annotations.ApiParam;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * entity:BisInspWtdst
  10. *
  11. * @author zhengdafei
  12. * @date 2019-3-18
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class BisInspWtdst extends BaseBean implements Serializable {
  16. @ApiModelProperty(value = "水毁情况", position = 1)
  17. private String wtdstDtle;
  18. @ApiModelProperty(value = "主要工程量", position = 2)
  19. private String wtdstWrkam;
  20. @ApiModelProperty(value = "计划修复日期", position = 3)
  21. private Date planRcvrTm;
  22. @ApiModelProperty(value = "插入时间", position = 4)
  23. private Date intm;
  24. @ApiModelProperty(value = "最后更新时间", position = 5)
  25. private Date uptm;
  26. @ApiModelProperty(value = "备注", position = 6)
  27. private String note;
  28. @ApiModelProperty(value = "水毁位置经度", position = 7)
  29. private Double wtdstLgtd;
  30. @ApiModelProperty(value = "水毁位置纬度", position = 8)
  31. private Double wtdstLttd;
  32. @ApiModelProperty(value = "项目所在位置", position = 9)
  33. private String locNm;
  34. private String objType;
  35. private String objCode;
  36. private String objName;
  37. @ApiModelProperty(value = "高德经度", position = 13)
  38. private Double centerXGd;
  39. @ApiModelProperty(value = "高德纬度", position = 14)
  40. private Double centerYGd;
  41. @ApiModelProperty(value = "金额", position = 15)
  42. private String prjamntTcfSum;
  43. @ApiModelProperty(value = "地方资金", position = 16)
  44. private String prjamntMony;
  45. @ApiModelProperty(value = "合计", position = 17)
  46. private String prjamntSum;
  47. @ApiModelProperty(value = "项目状况", position = 18)
  48. private String prjState;
  49. @ApiModelProperty(value = "资金进度", position = 19)
  50. private String fdPlan;
  51. @ApiModelProperty(value = "年度", position = 20)
  52. private String year;
  53. @ApiModelProperty(value = "水毁修复清单ID", position = 21)
  54. private String wtdstId;
  55. @ApiModelProperty(value = "类别名称", position = 22)
  56. private String wtdstType;
  57. @ApiModelProperty(value = "项目名称", position = 23)
  58. private String wtdstNm;
  59. @ApiModelProperty(value = "修复状态", position = 24)
  60. private String wtdstState;
  61. @ApiModelProperty(value = "所在行政区划代码", position = 25)
  62. private String locAd;
  63. @ApiModelProperty(value = "投入资金(万元)", position = 27)
  64. private Double cost;
  65. @ApiModelProperty(value = "修复进度(%)", position = 28)
  66. private Double planRcvr;
  67. @ApiModelProperty(value = "工程类型", position = 29)
  68. private String prjType;
  69. @ApiModelProperty(value = "水毁等级", position = 30)
  70. private String wtdstLev;
  71. @ApiModelProperty(value = "中央资金批次", position = 31)
  72. private String prjamntTcfBch;
  73. @ApiModelProperty(value = "文号", position = 32)
  74. private String prjamntTcfNo;
  75. private String src;
  76. private String adName;
  77. /**
  78. * 是否省属 1是 2否
  79. */
  80. @ApiParam(
  81. name = "provincial",
  82. value = "是否省属:1是2否"
  83. )
  84. @ApiModelProperty("是否省属(1:是;2:否)")
  85. private String provincial;
  86. public String getAdName() {
  87. return adName;
  88. }
  89. public void setAdName(String adName) {
  90. this.adName = adName;
  91. }
  92. public String getSrc() {
  93. return src;
  94. }
  95. public void setSrc(String src) {
  96. this.src = src;
  97. }
  98. public String getWtdstDtle() {
  99. return wtdstDtle;
  100. }
  101. public void setWtdstDtle(String wtdstDtle) {
  102. this.wtdstDtle = wtdstDtle;
  103. }
  104. public String getWtdstWrkam() {
  105. return wtdstWrkam;
  106. }
  107. public void setWtdstWrkam(String wtdstWrkam) {
  108. this.wtdstWrkam = wtdstWrkam;
  109. }
  110. public Date getPlanRcvrTm() {
  111. return planRcvrTm;
  112. }
  113. public void setPlanRcvrTm(Date planRcvrTm) {
  114. this.planRcvrTm = planRcvrTm;
  115. }
  116. public Date getIntm() {
  117. return intm;
  118. }
  119. public void setIntm(Date intm) {
  120. this.intm = intm;
  121. }
  122. public Date getUptm() {
  123. return uptm;
  124. }
  125. public void setUptm(Date uptm) {
  126. this.uptm = uptm;
  127. }
  128. public String getNote() {
  129. return note;
  130. }
  131. public void setNote(String note) {
  132. this.note = note;
  133. }
  134. public Double getWtdstLgtd() {
  135. return wtdstLgtd;
  136. }
  137. public void setWtdstLgtd(Double wtdstLgtd) {
  138. this.wtdstLgtd = wtdstLgtd;
  139. }
  140. public Double getWtdstLttd() {
  141. return wtdstLttd;
  142. }
  143. public void setWtdstLttd(Double wtdstLttd) {
  144. this.wtdstLttd = wtdstLttd;
  145. }
  146. public String getLocNm() {
  147. return locNm;
  148. }
  149. public void setLocNm(String locNm) {
  150. this.locNm = locNm;
  151. }
  152. public String getObjType() {
  153. return objType;
  154. }
  155. public void setObjType(String objType) {
  156. this.objType = objType;
  157. }
  158. public String getObjCode() {
  159. return objCode;
  160. }
  161. public void setObjCode(String objCode) {
  162. this.objCode = objCode;
  163. }
  164. public String getObjName() {
  165. return objName;
  166. }
  167. public void setObjName(String objName) {
  168. this.objName = objName;
  169. }
  170. public Double getCenterXGd() {
  171. return centerXGd;
  172. }
  173. public void setCenterXGd(Double centerXGd) {
  174. this.centerXGd = centerXGd;
  175. }
  176. public Double getCenterYGd() {
  177. return centerYGd;
  178. }
  179. public void setCenterYGd(Double centerYGd) {
  180. this.centerYGd = centerYGd;
  181. }
  182. public String getPrjamntTcfSum() {
  183. return prjamntTcfSum;
  184. }
  185. public void setPrjamntTcfSum(String prjamntTcfSum) {
  186. this.prjamntTcfSum = prjamntTcfSum;
  187. }
  188. public String getPrjamntMony() {
  189. return prjamntMony;
  190. }
  191. public void setPrjamntMony(String prjamntMony) {
  192. this.prjamntMony = prjamntMony;
  193. }
  194. public String getPrjamntSum() {
  195. return prjamntSum;
  196. }
  197. public void setPrjamntSum(String prjamntSum) {
  198. this.prjamntSum = prjamntSum;
  199. }
  200. public String getPrjState() {
  201. return prjState;
  202. }
  203. public void setPrjState(String prjState) {
  204. this.prjState = prjState;
  205. }
  206. public String getFdPlan() {
  207. return fdPlan;
  208. }
  209. public void setFdPlan(String fdPlan) {
  210. this.fdPlan = fdPlan;
  211. }
  212. public String getYear() {
  213. return year;
  214. }
  215. public void setYear(String year) {
  216. this.year = year;
  217. }
  218. public String getWtdstId() {
  219. return wtdstId;
  220. }
  221. public void setWtdstId(String wtdstId) {
  222. this.wtdstId = wtdstId;
  223. }
  224. public String getWtdstType() {
  225. return wtdstType;
  226. }
  227. public void setWtdstType(String wtdstType) {
  228. this.wtdstType = wtdstType;
  229. }
  230. public String getWtdstNm() {
  231. return wtdstNm;
  232. }
  233. public void setWtdstNm(String wtdstNm) {
  234. this.wtdstNm = wtdstNm;
  235. }
  236. public String getWtdstState() {
  237. return wtdstState;
  238. }
  239. public void setWtdstState(String wtdstState) {
  240. this.wtdstState = wtdstState;
  241. }
  242. public String getLocAd() {
  243. return locAd;
  244. }
  245. public void setLocAd(String locAd) {
  246. this.locAd = locAd;
  247. }
  248. public Double getCost() {
  249. return cost;
  250. }
  251. public void setCost(Double cost) {
  252. this.cost = cost;
  253. }
  254. public Double getPlanRcvr() {
  255. return planRcvr;
  256. }
  257. public void setPlanRcvr(Double planRcvr) {
  258. this.planRcvr = planRcvr;
  259. }
  260. public String getPrjType() {
  261. return prjType;
  262. }
  263. public void setPrjType(String prjType) {
  264. this.prjType = prjType;
  265. }
  266. public String getWtdstLev() {
  267. return wtdstLev;
  268. }
  269. public void setWtdstLev(String wtdstLev) {
  270. this.wtdstLev = wtdstLev;
  271. }
  272. public String getPrjamntTcfBch() {
  273. return prjamntTcfBch;
  274. }
  275. public void setPrjamntTcfBch(String prjamntTcfBch) {
  276. this.prjamntTcfBch = prjamntTcfBch;
  277. }
  278. public String getPrjamntTcfNo() {
  279. return prjamntTcfNo;
  280. }
  281. public void setPrjamntTcfNo(String prjamntTcfNo) {
  282. this.prjamntTcfNo = prjamntTcfNo;
  283. }
  284. public String getProvincial() {
  285. return provincial;
  286. }
  287. public void setProvincial(String provincial) {
  288. this.provincial = provincial;
  289. }
  290. @Override
  291. public String toString() {
  292. return "BisInspWtdst{" +
  293. "wtdstDtle='" + wtdstDtle + '\'' +
  294. ", wtdstWrkam='" + wtdstWrkam + '\'' +
  295. ", planRcvrTm=" + planRcvrTm +
  296. ", intm=" + intm +
  297. ", uptm=" + uptm +
  298. ", note='" + note + '\'' +
  299. ", wtdstLgtd=" + wtdstLgtd +
  300. ", wtdstLttd=" + wtdstLttd +
  301. ", locNm='" + locNm + '\'' +
  302. ", objType='" + objType + '\'' +
  303. ", objCode='" + objCode + '\'' +
  304. ", objName='" + objName + '\'' +
  305. ", centerXGd=" + centerXGd +
  306. ", centerYGd=" + centerYGd +
  307. ", prjamntTcfSum='" + prjamntTcfSum + '\'' +
  308. ", prjamntMony='" + prjamntMony + '\'' +
  309. ", prjamntSum='" + prjamntSum + '\'' +
  310. ", prjState='" + prjState + '\'' +
  311. ", fdPlan='" + fdPlan + '\'' +
  312. ", year='" + year + '\'' +
  313. ", wtdstId='" + wtdstId + '\'' +
  314. ", wtdstType='" + wtdstType + '\'' +
  315. ", wtdstNm='" + wtdstNm + '\'' +
  316. ", wtdstState='" + wtdstState + '\'' +
  317. ", locAd='" + locAd + '\'' +
  318. ", cost=" + cost +
  319. ", planRcvr=" + planRcvr +
  320. ", prjType='" + prjType + '\'' +
  321. ", wtdstLev='" + wtdstLev + '\'' +
  322. ", prjamntTcfBch='" + prjamntTcfBch + '\'' +
  323. ", prjamntTcfNo='" + prjamntTcfNo + '\'' +
  324. ", src='" + src + '\'' +
  325. ", adName='" + adName + '\'' +
  326. ", provincial='" + provincial + '\'' +
  327. "} " + super.toString();
  328. }
  329. }