fdd47f9abe782005c28865e3e0d025bec73bacde.svn-base 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:AttWtgtBase
  9. *
  10. * @author lhc
  11. * @date 2020-9-18
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class AttWtgtBase extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 单位名称
  19. @ApiModelProperty(value = "单位名称", name = "depName")
  20. private String depName;
  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 = "wintCode")
  29. private String wintCode;
  30. // 联系人
  31. @ApiModelProperty(value = "联系人", name = "depPers")
  32. private String depPers;
  33. // 联系电话
  34. @ApiModelProperty(value = "联系电话", name = "depPersTel")
  35. private String depPersTel;
  36. // 单位地址
  37. @ApiModelProperty(value = "单位地址", name = "loc")
  38. private String loc;
  39. // 经度
  40. @ApiModelProperty(value = "经度", name = "centerX")
  41. private Double centerX;
  42. // 纬度
  43. @ApiModelProperty(value = "纬度", name = "centerY")
  44. private Double centerY;
  45. // 高德经度
  46. @ApiModelProperty(value = "高德经度", name = "gdX")
  47. private Double gdX;
  48. // 高德纬度
  49. @ApiModelProperty(value = "高德纬度", name = "gdY")
  50. private Double gdY;
  51. // 创建时间
  52. @ApiModelProperty(value = "创建时间", name = "intm")
  53. private Date intm;
  54. // 修改时间
  55. @ApiModelProperty(value = "修改时间", name = "uptm")
  56. private Date uptm;
  57. // 数据状态(0:正常;9:删除)
  58. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  59. private String dataStat;
  60. @ApiModelProperty(value = "负责人", name = "utLead")
  61. private String utLead;
  62. @ApiModelProperty(value = "负责人电话", position = 19)
  63. private String principalTel;
  64. @ApiModelProperty(value = "修改时间", position = 20)
  65. private String note;
  66. public AttWtgtBase() {
  67. }
  68. public String getUtLead() {
  69. return utLead;
  70. }
  71. public void setUtLead(String utLead) {
  72. this.utLead = utLead;
  73. }
  74. public String getPrincipalTel() {
  75. return principalTel;
  76. }
  77. public void setPrincipalTel(String principalTel) {
  78. this.principalTel = principalTel;
  79. }
  80. public String getNote() {
  81. return note;
  82. }
  83. public void setNote(String note) {
  84. this.note = note;
  85. }
  86. public String getId() {
  87. return id;
  88. }
  89. public void setId(String id) {
  90. this.id = id;
  91. }
  92. public String getDepName() {
  93. return depName;
  94. }
  95. public void setDepName(String depName) {
  96. this.depName = depName;
  97. }
  98. public String getAdCode() {
  99. return adCode;
  100. }
  101. public void setAdCode(String adCode) {
  102. this.adCode = adCode;
  103. }
  104. public String getAdName() {
  105. return adName;
  106. }
  107. public void setAdName(String adName) {
  108. this.adName = adName;
  109. }
  110. public String getWintCode() {
  111. return wintCode;
  112. }
  113. public void setWintCode(String wintCode) {
  114. this.wintCode = wintCode;
  115. }
  116. public String getDepPers() {
  117. return depPers;
  118. }
  119. public void setDepPers(String depPers) {
  120. this.depPers = depPers;
  121. }
  122. public String getDepPersTel() {
  123. return depPersTel;
  124. }
  125. public void setDepPersTel(String depPersTel) {
  126. this.depPersTel = depPersTel;
  127. }
  128. public String getLoc() {
  129. return loc;
  130. }
  131. public void setLoc(String loc) {
  132. this.loc = loc;
  133. }
  134. public Double getCenterX() {
  135. return centerX;
  136. }
  137. public void setCenterX(Double centerX) {
  138. this.centerX = centerX;
  139. }
  140. public Double getCenterY() {
  141. return centerY;
  142. }
  143. public void setCenterY(Double centerY) {
  144. this.centerY = centerY;
  145. }
  146. public Double getGdX() {
  147. return gdX;
  148. }
  149. public void setGdX(Double gdX) {
  150. this.gdX = gdX;
  151. }
  152. public Double getGdY() {
  153. return gdY;
  154. }
  155. public void setGdY(Double gdY) {
  156. this.gdY = gdY;
  157. }
  158. public Date getIntm() {
  159. return intm;
  160. }
  161. public void setIntm(Date intm) {
  162. this.intm = intm;
  163. }
  164. public Date getUptm() {
  165. return uptm;
  166. }
  167. public void setUptm(Date uptm) {
  168. this.uptm = uptm;
  169. }
  170. public String getDataStat() {
  171. return dataStat;
  172. }
  173. public void setDataStat(String dataStat) {
  174. this.dataStat = dataStat;
  175. }
  176. @Override
  177. public String toString() {
  178. return "AttWtgtBase [" + "id=" + id + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", wintCode=" + wintCode + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", loc=" + loc + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  179. }
  180. }