b3fe169351da62c72cc6ff4d5acb4e07914dec3d.svn-base 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import cn.com.goldenwater.core.model.BaseBean;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. /**
  7. * entity:AttWainBase
  8. *
  9. * @author lune
  10. * @date 2019-5-21
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class AttWainBase extends BaseBean implements Serializable {
  14. // 单位名称
  15. @ApiModelProperty("单位名称")
  16. private String admName;
  17. // 经度
  18. @ApiModelProperty("经度")
  19. private Double centerX;
  20. // 维度
  21. @ApiModelProperty("纬度")
  22. private Double centerY;
  23. // 引调水工程名称
  24. @ApiModelProperty("引调水工程名称")
  25. private String ditrName;
  26. // 取水许可审批机关
  27. @ApiModelProperty("取水许可审批机关")
  28. private String exaDep;
  29. // 水闸名称
  30. @ApiModelProperty("水闸名称")
  31. private String gateName;
  32. // 是否为引调水工程取水口 1是 0否
  33. @ApiModelProperty("是否为引调水工程取水口:1是 0否")
  34. private String ifInt;
  35. // 有无取水许可证 1有 2无
  36. @ApiModelProperty(" 有无取水许可证:1有 2无")
  37. private String ifTakeLic;
  38. // 是否位于地表水水源地 1是 0否
  39. @ApiModelProperty("是否位于地表水水源地:1是 0否")
  40. private String ifWsSur;
  41. // 湖泊名称
  42. @ApiModelProperty("湖泊名称")
  43. private String lakeName;
  44. // 取水许可监督管理机关
  45. @ApiModelProperty("取水许可监督管理机关")
  46. private String permAdmOrg;
  47. // 行政区划名称
  48. @ApiModelProperty("行政区划名称")
  49. private String adName;
  50. // 河流名称
  51. @ApiModelProperty("河流名称")
  52. private String rvName;
  53. // 取水许可证编号
  54. @ApiModelProperty("取水许可证编号")
  55. private String takeLicCode;
  56. // 所属行业
  57. @ApiModelProperty("所属行业")
  58. private String tra;
  59. // 取水流量m3/s
  60. @ApiModelProperty("取水流量m3/s")
  61. private Double wintFlow;
  62. // 取水量取得方式
  63. @ApiModelProperty("取水量取得方式")
  64. private String wintMode;
  65. // 取水口名称
  66. @ApiModelProperty("取水口名称")
  67. private String wintName;
  68. // 取水口位置
  69. @ApiModelProperty("取水口位置")
  70. private String wintPos;
  71. // 取水方式 (1自流 2抽提)
  72. @ApiModelProperty("取水方式 (1自流 2抽提)")
  73. private String wintType;
  74. // 地表水水源地名称
  75. @ApiModelProperty
  76. private String wsName;
  77. // 水源地类型 1河流 2湖泊 3水库
  78. @ApiModelProperty("水源地类型:1河流 2湖泊 3水库")
  79. private Boolean wsType;
  80. // 高德经度
  81. @ApiModelProperty("高德经度")
  82. private Double lgtd;
  83. // 高德维度
  84. @ApiModelProperty("高德维度")
  85. private Double lttd;
  86. // 行政区划编码
  87. @ApiModelProperty("行政区划编码")
  88. private String adCode;
  89. // 编码
  90. @ApiModelProperty("编码")
  91. private String objCode;
  92. //显示等级
  93. @ApiModelProperty("显示等级")
  94. private String displayLevel;
  95. public AttWainBase() {
  96. }
  97. public String getDisplayLevel() {
  98. return displayLevel;
  99. }
  100. public void setDisplayLevel(String displayLevel) {
  101. this.displayLevel = displayLevel;
  102. }
  103. public String getAdmName() {
  104. return admName;
  105. }
  106. public void setAdmName(String admName) {
  107. this.admName = admName;
  108. }
  109. public Double getCenterX() {
  110. return centerX;
  111. }
  112. public void setCenterX(Double centerX) {
  113. this.centerX = centerX;
  114. }
  115. public Double getCenterY() {
  116. return centerY;
  117. }
  118. public void setCenterY(Double centerY) {
  119. this.centerY = centerY;
  120. }
  121. public String getDitrName() {
  122. return ditrName;
  123. }
  124. public void setDitrName(String ditrName) {
  125. this.ditrName = ditrName;
  126. }
  127. public String getExaDep() {
  128. return exaDep;
  129. }
  130. public void setExaDep(String exaDep) {
  131. this.exaDep = exaDep;
  132. }
  133. public String getGateName() {
  134. return gateName;
  135. }
  136. public void setGateName(String gateName) {
  137. this.gateName = gateName;
  138. }
  139. public String getIfInt() {
  140. return ifInt;
  141. }
  142. public void setIfInt(String ifInt) {
  143. this.ifInt = ifInt;
  144. }
  145. public String getIfTakeLic() {
  146. return ifTakeLic;
  147. }
  148. public void setIfTakeLic(String ifTakeLic) {
  149. this.ifTakeLic = ifTakeLic;
  150. }
  151. public String getIfWsSur() {
  152. return ifWsSur;
  153. }
  154. public void setIfWsSur(String ifWsSur) {
  155. this.ifWsSur = ifWsSur;
  156. }
  157. public String getLakeName() {
  158. return lakeName;
  159. }
  160. public void setLakeName(String lakeName) {
  161. this.lakeName = lakeName;
  162. }
  163. public String getPermAdmOrg() {
  164. return permAdmOrg;
  165. }
  166. public void setPermAdmOrg(String permAdmOrg) {
  167. this.permAdmOrg = permAdmOrg;
  168. }
  169. public String getAdName() {
  170. return adName;
  171. }
  172. public void setAdName(String adName) {
  173. this.adName = adName;
  174. }
  175. public String getRvName() {
  176. return rvName;
  177. }
  178. public void setRvName(String rvName) {
  179. this.rvName = rvName;
  180. }
  181. public String getTakeLicCode() {
  182. return takeLicCode;
  183. }
  184. public void setTakeLicCode(String takeLicCode) {
  185. this.takeLicCode = takeLicCode;
  186. }
  187. public String getTra() {
  188. return tra;
  189. }
  190. public void setTra(String tra) {
  191. this.tra = tra;
  192. }
  193. public Double getWintFlow() {
  194. return wintFlow;
  195. }
  196. public void setWintFlow(Double wintFlow) {
  197. this.wintFlow = wintFlow;
  198. }
  199. public String getWintMode() {
  200. return wintMode;
  201. }
  202. public void setWintMode(String wintMode) {
  203. this.wintMode = wintMode;
  204. }
  205. public String getWintName() {
  206. return wintName;
  207. }
  208. public void setWintName(String wintName) {
  209. this.wintName = wintName;
  210. }
  211. public String getWintPos() {
  212. return wintPos;
  213. }
  214. public void setWintPos(String wintPos) {
  215. this.wintPos = wintPos;
  216. }
  217. public String getWintType() {
  218. return wintType;
  219. }
  220. public void setWintType(String wintType) {
  221. this.wintType = wintType;
  222. }
  223. public String getWsName() {
  224. return wsName;
  225. }
  226. public void setWsName(String wsName) {
  227. this.wsName = wsName;
  228. }
  229. public Boolean getWsType() {
  230. return wsType;
  231. }
  232. public void setWsType(Boolean wsType) {
  233. this.wsType = wsType;
  234. }
  235. public Double getLgtd() {
  236. return lgtd;
  237. }
  238. public void setLgtd(Double lgtd) {
  239. this.lgtd = lgtd;
  240. }
  241. public Double getLttd() {
  242. return lttd;
  243. }
  244. public void setLttd(Double lttd) {
  245. this.lttd = lttd;
  246. }
  247. public String getAdCode() {
  248. return adCode;
  249. }
  250. public void setAdCode(String adCode) {
  251. this.adCode = adCode;
  252. }
  253. public String getObjCode() {
  254. return objCode;
  255. }
  256. public void setObjCode(String objCode) {
  257. this.objCode = objCode;
  258. }
  259. @Override
  260. public String toString() {
  261. return "AttWainBase{" +
  262. "admName='" + admName + '\'' +
  263. ", centerX=" + centerX +
  264. ", centerY=" + centerY +
  265. ", ditrName='" + ditrName + '\'' +
  266. ", exaDep='" + exaDep + '\'' +
  267. ", gateName='" + gateName + '\'' +
  268. ", ifInt='" + ifInt + '\'' +
  269. ", ifTakeLic='" + ifTakeLic + '\'' +
  270. ", ifWsSur='" + ifWsSur + '\'' +
  271. ", lakeName='" + lakeName + '\'' +
  272. ", permAdmOrg='" + permAdmOrg + '\'' +
  273. ", adName='" + adName + '\'' +
  274. ", rvName='" + rvName + '\'' +
  275. ", takeLicCode='" + takeLicCode + '\'' +
  276. ", tra='" + tra + '\'' +
  277. ", wintFlow=" + wintFlow +
  278. ", wintMode='" + wintMode + '\'' +
  279. ", wintName='" + wintName + '\'' +
  280. ", wintPos='" + wintPos + '\'' +
  281. ", wintType='" + wintType + '\'' +
  282. ", wsName='" + wsName + '\'' +
  283. ", wsType=" + wsType +
  284. ", lgtd=" + lgtd +
  285. ", lttd=" + lttd +
  286. ", adCode='" + adCode + '\'' +
  287. ", objCode='" + objCode + '\'' +
  288. '}';
  289. }
  290. }