136074f0b34b3adc7bb5b5e4b07f65b2a6100877.svn-base 10 KB

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