67b7588a77ebf10dd7372e09a543ff927db6066c.svn-base 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. import java.util.Date;
  7. /**
  8. * entity:AttUnwtBase
  9. *
  10. * @author lhc
  11. * @date 2021-5-27
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class AttUnwtBase extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 取水井名称
  19. @ApiModelProperty(value = "取水井名称", name = "nm")
  20. private String nm;
  21. // 所在地行政区编码
  22. @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
  23. private String adCode;
  24. // 所在地行政区
  25. @ApiModelProperty(value = "所在地行政区", name = "adName")
  26. private String adName;
  27. // 地址
  28. @ApiModelProperty(value = "地址", name = "loc")
  29. private String loc;
  30. // 经度
  31. @ApiModelProperty(value = "经度", name = "centerX")
  32. private Double centerX;
  33. // 纬度
  34. @ApiModelProperty(value = "纬度", name = "centerY")
  35. private Double centerY;
  36. // 高德经度
  37. @ApiModelProperty(value = "高德经度", name = "gdX")
  38. private Double gdX;
  39. // 高德纬度
  40. @ApiModelProperty(value = "高德纬度", name = "gdY")
  41. private Double gdY;
  42. // 创建时间
  43. @ApiModelProperty(value = "创建时间", name = "intm")
  44. private Date intm;
  45. // 修改时间
  46. @ApiModelProperty(value = "修改时间", name = "uptm")
  47. private Date uptm;
  48. // 数据状态(0:正常;9:删除)
  49. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  50. private String dataStat;
  51. public AttUnwtBase() {
  52. }
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getNm() {
  60. return nm;
  61. }
  62. public void setNm(String nm) {
  63. this.nm = nm;
  64. }
  65. public String getAdCode() {
  66. return adCode;
  67. }
  68. public void setAdCode(String adCode) {
  69. this.adCode = adCode;
  70. }
  71. public String getAdName() {
  72. return adName;
  73. }
  74. public void setAdName(String adName) {
  75. this.adName = adName;
  76. }
  77. public String getLoc() {
  78. return loc;
  79. }
  80. public void setLoc(String loc) {
  81. this.loc = loc;
  82. }
  83. public Double getCenterX() {
  84. return centerX;
  85. }
  86. public void setCenterX(Double centerX) {
  87. this.centerX = centerX;
  88. }
  89. public Double getCenterY() {
  90. return centerY;
  91. }
  92. public void setCenterY(Double centerY) {
  93. this.centerY = centerY;
  94. }
  95. public Double getGdX() {
  96. return gdX;
  97. }
  98. public void setGdX(Double gdX) {
  99. this.gdX = gdX;
  100. }
  101. public Double getGdY() {
  102. return gdY;
  103. }
  104. public void setGdY(Double gdY) {
  105. this.gdY = gdY;
  106. }
  107. public Date getIntm() {
  108. return intm;
  109. }
  110. public void setIntm(Date intm) {
  111. this.intm = intm;
  112. }
  113. public Date getUptm() {
  114. return uptm;
  115. }
  116. public void setUptm(Date uptm) {
  117. this.uptm = uptm;
  118. }
  119. public String getDataStat() {
  120. return dataStat;
  121. }
  122. public void setDataStat(String dataStat) {
  123. this.dataStat = dataStat;
  124. }
  125. @Override
  126. public String toString() {
  127. return "AttUnwtBase [" + "id=" + id + ", nm=" + nm + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  128. }
  129. }