c930759205c75a79ca720818e13b3c64984cba97.svn-base 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * AttIrrBaseParam
  8. *
  9. * @author lune
  10. * @date 2020-4-30
  11. */
  12. public class AttIrrBaseParam extends PageParam implements Serializable {
  13. @ApiModelProperty("ID")
  14. private String id;
  15. @ApiModelProperty("灌区代码")
  16. private String irrCode;
  17. @ApiModelProperty("灌区名称")
  18. private String irrName;
  19. @ApiModelProperty("行政区代码")
  20. private String adCode;
  21. @ApiModelProperty("行政区名称")
  22. private String adName;
  23. @ApiModelProperty("位置")
  24. private String location;
  25. @ApiModelProperty("高德经度")
  26. private Double centerXGd;
  27. @ApiModelProperty("高德纬度")
  28. private Double centerYGd;
  29. @ApiModelProperty("中心点经度")
  30. private Double centerX;
  31. @ApiModelProperty("中心点纬度")
  32. private Double centerY;
  33. @ApiModelProperty("左下角经度")
  34. private Double lowLeftLong;
  35. @ApiModelProperty("左下角纬度")
  36. private Double lowLeftLat;
  37. @ApiModelProperty("右上角经度")
  38. private Double upRightLong;
  39. @ApiModelProperty("右上角纬度")
  40. private Double upRightLat;
  41. @ApiModelProperty("数据来源")
  42. private String src;
  43. @ApiModelProperty("灌区的范围信息")
  44. private String irrRang;
  45. @ApiModelProperty(" 总灌溉面积 亩")
  46. private Long totIrrArea;
  47. @ApiModelProperty("有效灌溉面积 亩")
  48. private Long effIrrArea;
  49. @ApiModelProperty("设计灌溉面积 亩")
  50. private Long desIrrArea;
  51. @ApiModelProperty("工程建设情况 0未建 1在建 2已建")
  52. private String engStat;
  53. @ApiModelProperty("运行状况 1在用良好(工程处于良好运行)2在用故障(工程带故障运行)3停用(工程已废弃、或其他原因停用) ")
  54. private String runStat;
  55. @ApiModelProperty("灌区工程规模 1 大型 2 中型 3 小型 9 其他 ")
  56. private String irrEngScal;
  57. @ApiModelProperty("开工时间")
  58. private Date startDate;
  59. @ApiModelProperty("建成时间")
  60. private Date compDate;
  61. @ApiModelProperty("创建时间")
  62. private Date intm;
  63. @ApiModelProperty("更新时间")
  64. private Date uptm;
  65. @ApiModelProperty("数据状态(0:正常;9:删除)")
  66. private String dataStat;
  67. @ApiModelProperty("填报状态")
  68. private String state;
  69. @ApiModelProperty("高德经度")
  70. private Double gdX;
  71. @ApiModelProperty("高德纬度")
  72. private Double gdY;
  73. public Double getGdX() {
  74. return gdX;
  75. }
  76. public void setGdX(Double gdX) {
  77. this.gdX = gdX;
  78. }
  79. public Double getGdY() {
  80. return gdY;
  81. }
  82. public void setGdY(Double gdY) {
  83. this.gdY = gdY;
  84. }
  85. public AttIrrBaseParam() {
  86. }
  87. public String getId() {
  88. return id;
  89. }
  90. public void setId(String id) {
  91. this.id = id;
  92. }
  93. public String getIrrCode() {
  94. return irrCode;
  95. }
  96. public void setIrrCode(String irrCode) {
  97. this.irrCode = irrCode;
  98. }
  99. public String getIrrName() {
  100. return irrName;
  101. }
  102. public void setIrrName(String irrName) {
  103. this.irrName = irrName;
  104. }
  105. public String getAdCode() {
  106. return adCode;
  107. }
  108. public void setAdCode(String adCode) {
  109. this.adCode = adCode;
  110. }
  111. public String getAdName() {
  112. return adName;
  113. }
  114. public void setAdName(String adName) {
  115. this.adName = adName;
  116. }
  117. public String getLocation() {
  118. return location;
  119. }
  120. public void setLocation(String location) {
  121. this.location = location;
  122. }
  123. public Double getCenterXGd() {
  124. return centerXGd;
  125. }
  126. public void setCenterXGd(Double centerXGd) {
  127. this.centerXGd = centerXGd;
  128. }
  129. public Double getCenterYGd() {
  130. return centerYGd;
  131. }
  132. public void setCenterYGd(Double centerYGd) {
  133. this.centerYGd = centerYGd;
  134. }
  135. public Double getCenterX() {
  136. return centerX;
  137. }
  138. public void setCenterX(Double centerX) {
  139. this.centerX = centerX;
  140. }
  141. public Double getCenterY() {
  142. return centerY;
  143. }
  144. public void setCenterY(Double centerY) {
  145. this.centerY = centerY;
  146. }
  147. public Double getLowLeftLong() {
  148. return lowLeftLong;
  149. }
  150. public void setLowLeftLong(Double lowLeftLong) {
  151. this.lowLeftLong = lowLeftLong;
  152. }
  153. public Double getLowLeftLat() {
  154. return lowLeftLat;
  155. }
  156. public void setLowLeftLat(Double lowLeftLat) {
  157. this.lowLeftLat = lowLeftLat;
  158. }
  159. public Double getUpRightLong() {
  160. return upRightLong;
  161. }
  162. public void setUpRightLong(Double upRightLong) {
  163. this.upRightLong = upRightLong;
  164. }
  165. public Double getUpRightLat() {
  166. return upRightLat;
  167. }
  168. public void setUpRightLat(Double upRightLat) {
  169. this.upRightLat = upRightLat;
  170. }
  171. public String getSrc() {
  172. return src;
  173. }
  174. public void setSrc(String src) {
  175. this.src = src;
  176. }
  177. public String getIrrRang() {
  178. return irrRang;
  179. }
  180. public void setIrrRang(String irrRang) {
  181. this.irrRang = irrRang;
  182. }
  183. public Long getTotIrrArea() {
  184. return totIrrArea;
  185. }
  186. public void setTotIrrArea(Long totIrrArea) {
  187. this.totIrrArea = totIrrArea;
  188. }
  189. public Long getEffIrrArea() {
  190. return effIrrArea;
  191. }
  192. public void setEffIrrArea(Long effIrrArea) {
  193. this.effIrrArea = effIrrArea;
  194. }
  195. public Long getDesIrrArea() {
  196. return desIrrArea;
  197. }
  198. public void setDesIrrArea(Long desIrrArea) {
  199. this.desIrrArea = desIrrArea;
  200. }
  201. public String getEngStat() {
  202. return engStat;
  203. }
  204. public void setEngStat(String engStat) {
  205. this.engStat = engStat;
  206. }
  207. public String getRunStat() {
  208. return runStat;
  209. }
  210. public void setRunStat(String runStat) {
  211. this.runStat = runStat;
  212. }
  213. public String getIrrEngScal() {
  214. return irrEngScal;
  215. }
  216. public void setIrrEngScal(String irrEngScal) {
  217. this.irrEngScal = irrEngScal;
  218. }
  219. public Date getStartDate() {
  220. return startDate;
  221. }
  222. public void setStartDate(Date startDate) {
  223. this.startDate = startDate;
  224. }
  225. public Date getCompDate() {
  226. return compDate;
  227. }
  228. public void setCompDate(Date compDate) {
  229. this.compDate = compDate;
  230. }
  231. public Date getIntm() {
  232. return intm;
  233. }
  234. public void setIntm(Date intm) {
  235. this.intm = intm;
  236. }
  237. public Date getUptm() {
  238. return uptm;
  239. }
  240. public void setUptm(Date uptm) {
  241. this.uptm = uptm;
  242. }
  243. public String getDataStat() {
  244. return dataStat;
  245. }
  246. public void setDataStat(String dataStat) {
  247. this.dataStat = dataStat;
  248. }
  249. public String getState() {
  250. return state;
  251. }
  252. public void setState(String state) {
  253. this.state = state;
  254. }
  255. }