fffc347a8cf75900353d9e0bc78431c2f9f0a9f8.svn-base 8.4 KB

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