e59d448b77d919a439b35ce2c7e6ee12fa6e7721.svn-base 7.9 KB

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