e8a59a6c6da36a959a7addceccf13fe07a44b775.svn-base 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:AttGrwBase
  8. *
  9. * @author zhengdafei
  10. * @date 2019-3-30
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class AttGrwBaseAdd extends BaseBean implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. //监测站编码(主键)
  16. @ApiModelProperty(value = "监测站编码(长度:20,主键,可为空:N)")
  17. private String stcd;
  18. @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
  19. private Double lgtdPc;
  20. //监测站位置
  21. @ApiModelProperty(value = "监测站位置(长度:50,可为空:Y)")
  22. private String stlc;
  23. //北纬(度)
  24. @ApiModelProperty(value = "北纬(度)(精度:10,小数位:6,可为空:Y)")
  25. private Double lttd;
  26. //监测站名称
  27. @ApiModelProperty(value = "监测站名称(长度:100,可为空:Y)")
  28. private String stnm;
  29. //行政区划代码
  30. @ApiModelProperty(value = "行政区划代码(长度:50,可为空:Y)")
  31. private String adcd;
  32. //监测站类别
  33. @ApiModelProperty(value = "监测站类别(长度:50,可为空:Y)")
  34. private String sttp;
  35. //行政区划名称
  36. @ApiModelProperty(value = "行政区划名称(长度:50,可为空:Y)")
  37. private String adnm;
  38. @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
  39. private Double lttdPc;
  40. //东经(度)
  41. @ApiModelProperty(value = "东经(度)(精度:10,小数位:6,可为空:Y)")
  42. private Double lgtd;
  43. //监测井类型
  44. @ApiModelProperty(value = "监测井类型(长度:50,可为空:Y)")
  45. private String wsttp;
  46. public AttGrwBaseAdd() {
  47. }
  48. public static long getSerialVersionUID() {
  49. return serialVersionUID;
  50. }
  51. public String getStcd() {
  52. return stcd;
  53. }
  54. public void setStcd(String stcd) {
  55. this.stcd = stcd;
  56. }
  57. public Double getLgtdPc() {
  58. return lgtdPc;
  59. }
  60. public void setLgtdPc(Double lgtdPc) {
  61. this.lgtdPc = lgtdPc;
  62. }
  63. public String getStlc() {
  64. return stlc;
  65. }
  66. public void setStlc(String stlc) {
  67. this.stlc = stlc;
  68. }
  69. public Double getLttd() {
  70. return lttd;
  71. }
  72. public void setLttd(Double lttd) {
  73. this.lttd = lttd;
  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 getSttp() {
  88. return sttp;
  89. }
  90. public void setSttp(String sttp) {
  91. this.sttp = sttp;
  92. }
  93. public String getAdnm() {
  94. return adnm;
  95. }
  96. public void setAdnm(String adnm) {
  97. this.adnm = adnm;
  98. }
  99. public Double getLttdPc() {
  100. return lttdPc;
  101. }
  102. public void setLttdPc(Double lttdPc) {
  103. this.lttdPc = lttdPc;
  104. }
  105. public Double getLgtd() {
  106. return lgtd;
  107. }
  108. public void setLgtd(Double lgtd) {
  109. this.lgtd = lgtd;
  110. }
  111. public String getWsttp() {
  112. return wsttp;
  113. }
  114. public void setWsttp(String wsttp) {
  115. this.wsttp = wsttp;
  116. }
  117. }