1591f408b833ecea2d6dbc5a668277c74a0436bf.svn-base 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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. /**
  8. * entity:BisInspIrrTownsDsu
  9. *
  10. * @author lune
  11. * @date 2020-4-30
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspIrrTownsDsu extends BaseBean implements Serializable {
  15. @ApiModelProperty("小型农田水利工程运行管护监管部门 1水利部门 2农业农村部门 3乡镇政府 4委托村集体 5其他")
  16. private String curBulDep;
  17. @ApiModelProperty("当前小型农田水利工程运行管护部门")
  18. private String curRunDep;
  19. @ApiModelProperty("2019年小型农田水利建设投入资金(万元)")
  20. private Double inBulMoney;
  21. @ApiModelProperty("2019年小型农田水利维修养护资金需求(万元)")
  22. private Double inRunMoney;
  23. @ApiModelProperty("2019年上级下拨维修养护经费(万元)")
  24. private Double othrStnMoney;
  25. @ApiModelProperty("2019年本乡镇收取灌溉水费(万元)")
  26. private Double collectStnMoney;
  27. @ApiModelProperty("存在的问题及原因")
  28. private String wtrpPblm;
  29. @ApiModelProperty("意见建议")
  30. private String comments;
  31. @ApiModelProperty("调研人员姓名")
  32. private String invsrName;
  33. @ApiModelProperty("调研人员联系电话")
  34. private String invsrPhone;
  35. @ApiModelProperty("县水利部门联系人姓名")
  36. private String cunCntcName;
  37. @ApiModelProperty("县水利部门联系人电话")
  38. private String cunCntcPhone;
  39. @ApiModelProperty("调研时间")
  40. private Date rsrchTm;
  41. @ApiModelProperty("创建人")
  42. private String persId;
  43. @ApiModelProperty("创建时间")
  44. private Date intm;
  45. @ApiModelProperty("更新时间")
  46. private Date uptm;
  47. @ApiModelProperty("数据状态(0:正常;9:删除)")
  48. private String dataStat;
  49. @ApiModelProperty("填报状态")
  50. private String state;
  51. @ApiModelProperty("ID")
  52. private String id;
  53. @ApiModelProperty("水库督查登记ID")
  54. private String rgstrId;
  55. @ApiModelProperty("督查对象ID")
  56. private String objId;
  57. @ApiModelProperty("行政区代码")
  58. private String adCode;
  59. @ApiModelProperty("行政区名称")
  60. private String adName;
  61. @ApiModelProperty("农村人口(万人)")
  62. private Double rurPop;
  63. @ApiModelProperty("有效灌溉面积(万亩)")
  64. private Double effIrrArea;
  65. @ApiModelProperty("地形地貌 1山区 2平原 3丘陵")
  66. private String lndfrm;
  67. @ApiModelProperty("因工程问题导致原先可灌溉但现在无法 灌溉的面积亩")
  68. private Double prjPbmArea;
  69. @ApiModelProperty("乡镇水利服务机构名称")
  70. private String townsOrgNm;
  71. @ApiModelProperty("乡镇水利服务机构 隶属关系 1县水利局 2乡镇政府 3备注")
  72. private String townsOrgType;
  73. @ApiModelProperty("乡镇水利服务机构 隶属关系 1县水利局 2乡镇政府 3备注 手动输入")
  74. private String townsOrgTypeNote;
  75. @ApiModelProperty("小型农田水利工程运行管护监管部门其他手动填写")
  76. private String curBulDepNote;
  77. @ApiModelProperty("当前小型农田水利工程运行管护部门 其他手动输入")
  78. private String curRunDepNote;
  79. @ApiModelProperty("乡镇水利服务机构主要工作内容")
  80. private String townsOrgWork;
  81. @ApiModelProperty("PC经度")
  82. private Double centerX;
  83. @ApiModelProperty("PC纬度")
  84. private Double centerY;
  85. @ApiModelProperty("高德经度")
  86. private Double gdX;
  87. @ApiModelProperty("高德纬度")
  88. private Double gdY;
  89. public String getTownsOrgTypeNote() {
  90. return townsOrgTypeNote;
  91. }
  92. public void setTownsOrgTypeNote(String townsOrgTypeNote) {
  93. this.townsOrgTypeNote = townsOrgTypeNote;
  94. }
  95. public String getCurBulDepNote() {
  96. return curBulDepNote;
  97. }
  98. public void setCurBulDepNote(String curBulDepNote) {
  99. this.curBulDepNote = curBulDepNote;
  100. }
  101. public String getCurRunDepNote() {
  102. return curRunDepNote;
  103. }
  104. public void setCurRunDepNote(String curRunDepNote) {
  105. this.curRunDepNote = curRunDepNote;
  106. }
  107. public Double getCenterX() {
  108. return centerX;
  109. }
  110. public void setCenterX(Double centerX) {
  111. this.centerX = centerX;
  112. }
  113. public Double getCenterY() {
  114. return centerY;
  115. }
  116. public void setCenterY(Double centerY) {
  117. this.centerY = centerY;
  118. }
  119. public Double getGdX() {
  120. return gdX;
  121. }
  122. public void setGdX(Double gdX) {
  123. this.gdX = gdX;
  124. }
  125. public Double getGdY() {
  126. return gdY;
  127. }
  128. public void setGdY(Double gdY) {
  129. this.gdY = gdY;
  130. }
  131. public BisInspIrrTownsDsu() {
  132. }
  133. public String getCurBulDep() {
  134. return curBulDep;
  135. }
  136. public void setCurBulDep(String curBulDep) {
  137. this.curBulDep = curBulDep;
  138. }
  139. public String getCurRunDep() {
  140. return curRunDep;
  141. }
  142. public void setCurRunDep(String curRunDep) {
  143. this.curRunDep = curRunDep;
  144. }
  145. public Double getInBulMoney() {
  146. return inBulMoney;
  147. }
  148. public void setInBulMoney(Double inBulMoney) {
  149. this.inBulMoney = inBulMoney;
  150. }
  151. public Double getInRunMoney() {
  152. return inRunMoney;
  153. }
  154. public void setInRunMoney(Double inRunMoney) {
  155. this.inRunMoney = inRunMoney;
  156. }
  157. public Double getOthrStnMoney() {
  158. return othrStnMoney;
  159. }
  160. public void setOthrStnMoney(Double othrStnMoney) {
  161. this.othrStnMoney = othrStnMoney;
  162. }
  163. public Double getCollectStnMoney() {
  164. return collectStnMoney;
  165. }
  166. public void setCollectStnMoney(Double collectStnMoney) {
  167. this.collectStnMoney = collectStnMoney;
  168. }
  169. public String getWtrpPblm() {
  170. return wtrpPblm;
  171. }
  172. public void setWtrpPblm(String wtrpPblm) {
  173. this.wtrpPblm = wtrpPblm;
  174. }
  175. public String getComments() {
  176. return comments;
  177. }
  178. public void setComments(String comments) {
  179. this.comments = comments;
  180. }
  181. public String getInvsrName() {
  182. return invsrName;
  183. }
  184. public void setInvsrName(String invsrName) {
  185. this.invsrName = invsrName;
  186. }
  187. public String getInvsrPhone() {
  188. return invsrPhone;
  189. }
  190. public void setInvsrPhone(String invsrPhone) {
  191. this.invsrPhone = invsrPhone;
  192. }
  193. public String getCunCntcName() {
  194. return cunCntcName;
  195. }
  196. public void setCunCntcName(String cunCntcName) {
  197. this.cunCntcName = cunCntcName;
  198. }
  199. public String getCunCntcPhone() {
  200. return cunCntcPhone;
  201. }
  202. public void setCunCntcPhone(String cunCntcPhone) {
  203. this.cunCntcPhone = cunCntcPhone;
  204. }
  205. public Date getRsrchTm() {
  206. return rsrchTm;
  207. }
  208. public void setRsrchTm(Date rsrchTm) {
  209. this.rsrchTm = rsrchTm;
  210. }
  211. public String getPersId() {
  212. return persId;
  213. }
  214. public void setPersId(String persId) {
  215. this.persId = persId;
  216. }
  217. public Date getIntm() {
  218. return intm;
  219. }
  220. public void setIntm(Date intm) {
  221. this.intm = intm;
  222. }
  223. public Date getUptm() {
  224. return uptm;
  225. }
  226. public void setUptm(Date uptm) {
  227. this.uptm = uptm;
  228. }
  229. public String getDataStat() {
  230. return dataStat;
  231. }
  232. public void setDataStat(String dataStat) {
  233. this.dataStat = dataStat;
  234. }
  235. public String getState() {
  236. return state;
  237. }
  238. public void setState(String state) {
  239. this.state = state;
  240. }
  241. public String getId() {
  242. return id;
  243. }
  244. public void setId(String id) {
  245. this.id = id;
  246. }
  247. @Override
  248. public String getRgstrId() {
  249. return rgstrId;
  250. }
  251. @Override
  252. public void setRgstrId(String rgstrId) {
  253. this.rgstrId = rgstrId;
  254. }
  255. @Override
  256. public String getObjId() {
  257. return objId;
  258. }
  259. @Override
  260. public void setObjId(String objId) {
  261. this.objId = objId;
  262. }
  263. public String getAdCode() {
  264. return adCode;
  265. }
  266. public void setAdCode(String adCode) {
  267. this.adCode = adCode;
  268. }
  269. public String getAdName() {
  270. return adName;
  271. }
  272. public void setAdName(String adName) {
  273. this.adName = adName;
  274. }
  275. public Double getRurPop() {
  276. return rurPop;
  277. }
  278. public void setRurPop(Double rurPop) {
  279. this.rurPop = rurPop;
  280. }
  281. public Double getEffIrrArea() {
  282. return effIrrArea;
  283. }
  284. public void setEffIrrArea(Double effIrrArea) {
  285. this.effIrrArea = effIrrArea;
  286. }
  287. public String getLndfrm() {
  288. return lndfrm;
  289. }
  290. public void setLndfrm(String lndfrm) {
  291. this.lndfrm = lndfrm;
  292. }
  293. public Double getPrjPbmArea() {
  294. return prjPbmArea;
  295. }
  296. public void setPrjPbmArea(Double prjPbmArea) {
  297. this.prjPbmArea = prjPbmArea;
  298. }
  299. public String getTownsOrgNm() {
  300. return townsOrgNm;
  301. }
  302. public void setTownsOrgNm(String townsOrgNm) {
  303. this.townsOrgNm = townsOrgNm;
  304. }
  305. public String getTownsOrgType() {
  306. return townsOrgType;
  307. }
  308. public void setTownsOrgType(String townsOrgType) {
  309. this.townsOrgType = townsOrgType;
  310. }
  311. public String getTownsOrgWork() {
  312. return townsOrgWork;
  313. }
  314. public void setTownsOrgWork(String townsOrgWork) {
  315. this.townsOrgWork = townsOrgWork;
  316. }
  317. @Override
  318. public String toString() {
  319. return "BisInspIrrTownsDsu [" + "curBulDep=" + curBulDep + ", curRunDep=" + curRunDep + ", inBulMoney=" + inBulMoney + ", inRunMoney=" + inRunMoney + ", othrStnMoney=" + othrStnMoney + ", collectStnMoney=" + collectStnMoney + ", wtrpPblm=" + wtrpPblm + ", comments=" + comments + ", invsrName=" + invsrName + ", invsrPhone=" + invsrPhone + ", cunCntcName=" + cunCntcName + ", cunCntcPhone=" + cunCntcPhone + ", rsrchTm=" + rsrchTm + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + ", id=" + id + ", rgstrId=" + rgstrId + ", objId=" + objId + ", adCode=" + adCode + ", adName=" + adName + ", rurPop=" + rurPop + ", effIrrArea=" + effIrrArea + ", lndfrm=" + lndfrm + ", prjPbmArea=" + prjPbmArea + ", townsOrgNm=" + townsOrgNm + ", townsOrgType=" + townsOrgType + ", townsOrgWork=" + townsOrgWork + "]";
  320. }
  321. }