291c4ebb30aacc8baf8a348e9bdf0c4c93b0484d.svn-base 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. package cn.com.goldenwater.dcproj.dto;
  2. /**
  3. * Created by 61618 on 2019/4/12.
  4. */
  5. public class PersGrwInfoDto {
  6. // 监测站编码
  7. private String stcd;
  8. // 监测站名称
  9. private String stnm;
  10. // 行政区划代码
  11. private String adcd;
  12. // 行政区划名称
  13. private String adnm;
  14. // 所属地质单元
  15. private String gogunt;
  16. // 监测站位置
  17. private String stlc;
  18. // 东经(度)
  19. private Double lgtd;
  20. // 北纬(度)
  21. private Double lttd;
  22. // 测站所属流域机构
  23. private String rvnm;
  24. // 井深(m)
  25. private Double welldep;
  26. // 固定点高程(m)
  27. private Double stndpnt;
  28. // 地面高程(m)
  29. private Double grdlvl;
  30. // 井台高(m)
  31. private Double spghgh;
  32. // 监测站类别
  33. private String sttp;
  34. // 监测井类型
  35. private String wsttp;
  36. // 保护装置
  37. private String prtc;
  38. // 建井类型
  39. private String bwsttp;
  40. // 是否自流井
  41. private String isart;
  42. // 埋藏条件
  43. private String burcn;
  44. // 水介质
  45. private String aqme;
  46. // 刊布项目
  47. private String pbprj;
  48. // 设站日期
  49. private String esstym;
  50. // 撤站日期
  51. private String calym;
  52. // 产权单位
  53. private String onun;
  54. // 管理单位
  55. private String mnun;
  56. // 原编码
  57. private String ostcd;
  58. // 入库时间
  59. private String intm;
  60. private String esstyr;
  61. private String stel;
  62. private String dtmnm;
  63. private String dtmmdpr;
  64. private String note;
  65. // pc经度
  66. private Double lgtdPc;
  67. // pc纬度
  68. private Double lttdPc;
  69. public String getStcd() {
  70. return stcd;
  71. }
  72. public void setStcd(String stcd) {
  73. this.stcd = stcd;
  74. }
  75. public String getStnm() {
  76. return stnm;
  77. }
  78. public void setStnm(String stnm) {
  79. this.stnm = stnm;
  80. }
  81. public String getAdcd() {
  82. return adcd;
  83. }
  84. public void setAdcd(String adcd) {
  85. this.adcd = adcd;
  86. }
  87. public String getAdnm() {
  88. return adnm;
  89. }
  90. public void setAdnm(String adnm) {
  91. this.adnm = adnm;
  92. }
  93. public String getGogunt() {
  94. return gogunt;
  95. }
  96. public void setGogunt(String gogunt) {
  97. this.gogunt = gogunt;
  98. }
  99. public String getStlc() {
  100. return stlc;
  101. }
  102. public void setStlc(String stlc) {
  103. this.stlc = stlc;
  104. }
  105. public Double getLgtd() {
  106. return lgtd;
  107. }
  108. public void setLgtd(Double lgtd) {
  109. this.lgtd = lgtd;
  110. }
  111. public Double getLttd() {
  112. return lttd;
  113. }
  114. public void setLttd(Double lttd) {
  115. this.lttd = lttd;
  116. }
  117. public String getRvnm() {
  118. return rvnm;
  119. }
  120. public void setRvnm(String rvnm) {
  121. this.rvnm = rvnm;
  122. }
  123. public Double getWelldep() {
  124. return welldep;
  125. }
  126. public void setWelldep(Double welldep) {
  127. this.welldep = welldep;
  128. }
  129. public Double getStndpnt() {
  130. return stndpnt;
  131. }
  132. public void setStndpnt(Double stndpnt) {
  133. this.stndpnt = stndpnt;
  134. }
  135. public Double getGrdlvl() {
  136. return grdlvl;
  137. }
  138. public void setGrdlvl(Double grdlvl) {
  139. this.grdlvl = grdlvl;
  140. }
  141. public Double getSpghgh() {
  142. return spghgh;
  143. }
  144. public void setSpghgh(Double spghgh) {
  145. this.spghgh = spghgh;
  146. }
  147. public String getSttp() {
  148. return sttp;
  149. }
  150. public void setSttp(String sttp) {
  151. this.sttp = sttp;
  152. }
  153. public String getWsttp() {
  154. return wsttp;
  155. }
  156. public void setWsttp(String wsttp) {
  157. this.wsttp = wsttp;
  158. }
  159. public String getPrtc() {
  160. return prtc;
  161. }
  162. public void setPrtc(String prtc) {
  163. this.prtc = prtc;
  164. }
  165. public String getBwsttp() {
  166. return bwsttp;
  167. }
  168. public void setBwsttp(String bwsttp) {
  169. this.bwsttp = bwsttp;
  170. }
  171. public String getIsart() {
  172. return isart;
  173. }
  174. public void setIsart(String isart) {
  175. this.isart = isart;
  176. }
  177. public String getBurcn() {
  178. return burcn;
  179. }
  180. public void setBurcn(String burcn) {
  181. this.burcn = burcn;
  182. }
  183. public String getAqme() {
  184. return aqme;
  185. }
  186. public void setAqme(String aqme) {
  187. this.aqme = aqme;
  188. }
  189. public String getPbprj() {
  190. return pbprj;
  191. }
  192. public void setPbprj(String pbprj) {
  193. this.pbprj = pbprj;
  194. }
  195. public String getEsstym() {
  196. return esstym;
  197. }
  198. public void setEsstym(String esstym) {
  199. this.esstym = esstym;
  200. }
  201. public String getCalym() {
  202. return calym;
  203. }
  204. public void setCalym(String calym) {
  205. this.calym = calym;
  206. }
  207. public String getOnun() {
  208. return onun;
  209. }
  210. public void setOnun(String onun) {
  211. this.onun = onun;
  212. }
  213. public String getMnun() {
  214. return mnun;
  215. }
  216. public void setMnun(String mnun) {
  217. this.mnun = mnun;
  218. }
  219. public String getOstcd() {
  220. return ostcd;
  221. }
  222. public void setOstcd(String ostcd) {
  223. this.ostcd = ostcd;
  224. }
  225. public String getIntm() {
  226. return intm;
  227. }
  228. public void setIntm(String intm) {
  229. this.intm = intm;
  230. }
  231. public String getEsstyr() {
  232. return esstyr;
  233. }
  234. public void setEsstyr(String esstyr) {
  235. this.esstyr = esstyr;
  236. }
  237. public String getStel() {
  238. return stel;
  239. }
  240. public void setStel(String stel) {
  241. this.stel = stel;
  242. }
  243. public String getDtmnm() {
  244. return dtmnm;
  245. }
  246. public void setDtmnm(String dtmnm) {
  247. this.dtmnm = dtmnm;
  248. }
  249. public String getDtmmdpr() {
  250. return dtmmdpr;
  251. }
  252. public void setDtmmdpr(String dtmmdpr) {
  253. this.dtmmdpr = dtmmdpr;
  254. }
  255. public String getNote() {
  256. return note;
  257. }
  258. public void setNote(String note) {
  259. this.note = note;
  260. }
  261. public Double getLgtdPc() {
  262. return lgtdPc;
  263. }
  264. public void setLgtdPc(Double lgtdPc) {
  265. this.lgtdPc = lgtdPc;
  266. }
  267. public Double getLttdPc() {
  268. return lttdPc;
  269. }
  270. public void setLttdPc(Double lttdPc) {
  271. this.lttdPc = lttdPc;
  272. }
  273. @Override
  274. public String toString() {
  275. return "PersGrwInfoDto{" +
  276. "stcd='" + stcd + '\'' +
  277. ", stnm='" + stnm + '\'' +
  278. ", adcd='" + adcd + '\'' +
  279. ", adnm='" + adnm + '\'' +
  280. ", gogunt='" + gogunt + '\'' +
  281. ", stlc='" + stlc + '\'' +
  282. ", lgtd=" + lgtd +
  283. ", lttd=" + lttd +
  284. ", rvnm='" + rvnm + '\'' +
  285. ", welldep=" + welldep +
  286. ", stndpnt=" + stndpnt +
  287. ", grdlvl=" + grdlvl +
  288. ", spghgh=" + spghgh +
  289. ", sttp='" + sttp + '\'' +
  290. ", wsttp='" + wsttp + '\'' +
  291. ", prtc='" + prtc + '\'' +
  292. ", bwsttp='" + bwsttp + '\'' +
  293. ", isart='" + isart + '\'' +
  294. ", burcn='" + burcn + '\'' +
  295. ", aqme='" + aqme + '\'' +
  296. ", pbprj='" + pbprj + '\'' +
  297. ", esstym='" + esstym + '\'' +
  298. ", calym='" + calym + '\'' +
  299. ", onun='" + onun + '\'' +
  300. ", mnun='" + mnun + '\'' +
  301. ", ostcd='" + ostcd + '\'' +
  302. ", intm='" + intm + '\'' +
  303. ", esstyr='" + esstyr + '\'' +
  304. ", stel='" + stel + '\'' +
  305. ", dtmnm='" + dtmnm + '\'' +
  306. ", dtmmdpr='" + dtmmdpr + '\'' +
  307. ", note='" + note + '\'' +
  308. ", lgtdPc=" + lgtdPc +
  309. ", lttdPc=" + lttdPc +
  310. '}';
  311. }
  312. }