0c42dddd1bee2012a701deb4d8e4a2da24001e36.svn-base 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import cn.com.goldenwater.core.model.BaseBean;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. /**
  8. * entity:AttHystBase
  9. *
  10. * @author lune
  11. * @date 2021-3-10
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttHystBase extends BaseBean implements Serializable {
  15. @ApiModelProperty(value="统计代码", position = 1)
  16. private String statisCode;
  17. @ApiModelProperty(value="主键ID(统计代码)", position = 2)
  18. private String id;
  19. @ApiModelProperty(value="电站名称", position = 3)
  20. private String hystName;
  21. @ApiModelProperty(value="电站联系人姓名", position = 4)
  22. private String linkMan;
  23. @ApiModelProperty(value="联系人电话", position = 5)
  24. private String linkTel;
  25. @ApiModelProperty(value="行政区编码", position = 6)
  26. private String adCode;
  27. @ApiModelProperty(value="行政区名称", position = 7)
  28. private String adName;
  29. @ApiModelProperty(value="行政村名(详细地址)", position = 8)
  30. private String hystSite;
  31. @ApiModelProperty(value="取水口经度", position = 9)
  32. private Double centerX;
  33. @ApiModelProperty(value="取水口纬度", position = 10)
  34. private Double centerY;
  35. @ApiModelProperty(value="取水口经度-高德", position = 9)
  36. private Double gdX;
  37. @ApiModelProperty(value="取水口纬度-高德", position = 10)
  38. private Double gdY;
  39. @ApiModelProperty(value="厂房经度", position = 11)
  40. private Double hystLong;
  41. @ApiModelProperty(value="厂房纬度", position = 12)
  42. private Double hystLat;
  43. @ApiModelProperty(value="厂房经度-高德", position = 11)
  44. private Double hystGdX;
  45. @ApiModelProperty(value="厂房纬度-高德", position = 12)
  46. private Double hystGdY;
  47. @ApiModelProperty(value="所在河流", position = 13)
  48. private String rvName;
  49. @ApiModelProperty(value="投产时间(年月)", position = 14)
  50. private String compDate;
  51. @ApiModelProperty(value="所有制性质(1:民营;2:集体;3:国有;4:股份制;)", position = 15)
  52. private String ownerType;
  53. @ApiModelProperty(value="开发方式(1:引水式;2:混合式;3:坝后式;4:河床式;5:其他-工农业渠道上;6:其他-接上一级尾水)", position = 16)
  54. private String exptType;
  55. @ApiModelProperty(value="装机容量", position = 17)
  56. private String insCap;
  57. @ApiModelProperty(value="坝高", position = 18)
  58. private String damHeig;
  59. @ApiModelProperty(value="库容", position = 19)
  60. private String totCap;
  61. @ApiModelProperty(value="电站水库是否注册登记(1:是;2:否;)", position = 20)
  62. private String hystIsReg;
  63. @ApiModelProperty(value="电站水库注册登记号", position = 21)
  64. private String regNo;
  65. @ApiModelProperty(value="大坝是否已开展安全鉴定(1:是;2:否;)", position = 22)
  66. private String isSafety;
  67. @ApiModelProperty(value="生态流量核定值(m3/s)", position = 23)
  68. private String zlgyFlow;
  69. @ApiModelProperty(value="检查类型/清理整改分类(1:整改类;2:立即退出类;3:其他;4:保留类5:期限退出类)", position = 24)
  70. private String exmnType;
  71. @ApiModelProperty(value="创建时间", position = 25)
  72. private Date intm;
  73. @ApiModelProperty(value="最后修改时间", position = 26)
  74. private Date uptm;
  75. @ApiModelProperty(value="备注", position = 27)
  76. private String note;
  77. public AttHystBase() {
  78. }
  79. public String getStatisCode() {
  80. return statisCode;
  81. }
  82. public void setStatisCode(String statisCode) {
  83. this.statisCode = statisCode;
  84. }
  85. public String getId() {
  86. return id;
  87. }
  88. public void setId(String id) {
  89. this.id = id;
  90. }
  91. public String getHystName() {
  92. return hystName;
  93. }
  94. public void setHystName(String hystName) {
  95. this.hystName = hystName;
  96. }
  97. public String getLinkMan() {
  98. return linkMan;
  99. }
  100. public void setLinkMan(String linkMan) {
  101. this.linkMan = linkMan;
  102. }
  103. public String getLinkTel() {
  104. return linkTel;
  105. }
  106. public void setLinkTel(String linkTel) {
  107. this.linkTel = linkTel;
  108. }
  109. public String getAdCode() {
  110. return adCode;
  111. }
  112. public void setAdCode(String adCode) {
  113. this.adCode = adCode;
  114. }
  115. public String getAdName() {
  116. return adName;
  117. }
  118. public void setAdName(String adName) {
  119. this.adName = adName;
  120. }
  121. public String getHystSite() {
  122. return hystSite;
  123. }
  124. public void setHystSite(String hystSite) {
  125. this.hystSite = hystSite;
  126. }
  127. public Double getCenterX() {
  128. return centerX;
  129. }
  130. public void setCenterX(Double centerX) {
  131. this.centerX = centerX;
  132. }
  133. public Double getCenterY() {
  134. return centerY;
  135. }
  136. public void setCenterY(Double centerY) {
  137. this.centerY = centerY;
  138. }
  139. public Double getHystLong() {
  140. return hystLong;
  141. }
  142. public void setHystLong(Double hystLong) {
  143. this.hystLong = hystLong;
  144. }
  145. public Double getHystLat() {
  146. return hystLat;
  147. }
  148. public void setHystLat(Double hystLat) {
  149. this.hystLat = hystLat;
  150. }
  151. public String getRvName() {
  152. return rvName;
  153. }
  154. public void setRvName(String rvName) {
  155. this.rvName = rvName;
  156. }
  157. public String getCompDate() {
  158. return compDate;
  159. }
  160. public void setCompDate(String compDate) {
  161. this.compDate = compDate;
  162. }
  163. public String getOwnerType() {
  164. return ownerType;
  165. }
  166. public void setOwnerType(String ownerType) {
  167. this.ownerType = ownerType;
  168. }
  169. public String getExptType() {
  170. return exptType;
  171. }
  172. public void setExptType(String exptType) {
  173. this.exptType = exptType;
  174. }
  175. public String getInsCap() {
  176. return insCap;
  177. }
  178. public void setInsCap(String insCap) {
  179. this.insCap = insCap;
  180. }
  181. public String getDamHeig() {
  182. return damHeig;
  183. }
  184. public void setDamHeig(String damHeig) {
  185. this.damHeig = damHeig;
  186. }
  187. public String getTotCap() {
  188. return totCap;
  189. }
  190. public void setTotCap(String totCap) {
  191. this.totCap = totCap;
  192. }
  193. public String getHystIsReg() {
  194. return hystIsReg;
  195. }
  196. public void setHystIsReg(String hystIsReg) {
  197. this.hystIsReg = hystIsReg;
  198. }
  199. public String getRegNo() {
  200. return regNo;
  201. }
  202. public void setRegNo(String regNo) {
  203. this.regNo = regNo;
  204. }
  205. public String getIsSafety() {
  206. return isSafety;
  207. }
  208. public void setIsSafety(String isSafety) {
  209. this.isSafety = isSafety;
  210. }
  211. public String getZlgyFlow() {
  212. return zlgyFlow;
  213. }
  214. public void setZlgyFlow(String zlgyFlow) {
  215. this.zlgyFlow = zlgyFlow;
  216. }
  217. public String getExmnType() {
  218. return exmnType;
  219. }
  220. public void setExmnType(String exmnType) {
  221. this.exmnType = exmnType;
  222. }
  223. public Date getIntm() {
  224. return intm;
  225. }
  226. public void setIntm(Date intm) {
  227. this.intm = intm;
  228. }
  229. public Date getUptm() {
  230. return uptm;
  231. }
  232. public void setUptm(Date uptm) {
  233. this.uptm = uptm;
  234. }
  235. public String getNote() {
  236. return note;
  237. }
  238. public void setNote(String note) {
  239. this.note = note;
  240. }
  241. public Double getGdX() {
  242. return gdX;
  243. }
  244. public void setGdX(Double gdX) {
  245. this.gdX = gdX;
  246. }
  247. public Double getGdY() {
  248. return gdY;
  249. }
  250. public void setGdY(Double gdY) {
  251. this.gdY = gdY;
  252. }
  253. public Double getHystGdX() {
  254. return hystGdX;
  255. }
  256. public void setHystGdX(Double hystGdX) {
  257. this.hystGdX = hystGdX;
  258. }
  259. public Double getHystGdY() {
  260. return hystGdY;
  261. }
  262. public void setHystGdY(Double hystGdY) {
  263. this.hystGdY = hystGdY;
  264. }
  265. @Override
  266. public String toString() {
  267. return "AttHystBase [" + "statisCode=" + statisCode + ", id=" + id + ", hystName=" + hystName + ", linkMan=" + linkMan + ", linkTel=" + linkTel + ", adCode=" + adCode + ", adName=" + adName + ", hystSite=" + hystSite + ", centerX=" + centerX + ", centerY=" + centerY + ", hystLong=" + hystLong + ", hystLat=" + hystLat + ", rvName=" + rvName + ", compDate=" + compDate + ", ownerType=" + ownerType + ", exptType=" + exptType + ", insCap=" + insCap + ", damHeig=" + damHeig + ", totCap=" + totCap + ", hystIsReg=" + hystIsReg + ", regNo=" + regNo + ", isSafety=" + isSafety + ", zlgyFlow=" + zlgyFlow + ", exmnType=" + exmnType + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
  268. }
  269. }