fa78a5c0f08676a8fed987ae76eff3cb6e39e495.svn-base 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * AttWtgtBaseParam
  9. *
  10. * @author lhc
  11. * @date 2020-9-18
  12. */
  13. public class AttWtgtBaseParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 单位名称
  19. @ApiParam(name = "单位名称")
  20. @ApiModelProperty(value = "单位名称", name = "depName")
  21. private String depName;
  22. // 所在地行政区编码
  23. @ApiParam(name = "所在地行政区编码")
  24. @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
  25. private String adCode;
  26. // 所在地行政区
  27. @ApiParam(name = "所在地行政区")
  28. @ApiModelProperty(value = "所在地行政区", name = "adName")
  29. private String adName;
  30. // 取水许可证号
  31. @ApiParam(name = "取水许可证号")
  32. @ApiModelProperty(value = "取水许可证号", name = "wintCode")
  33. private String wintCode;
  34. // 联系人
  35. @ApiParam(name = "联系人")
  36. @ApiModelProperty(value = "联系人", name = "depPers")
  37. private String depPers;
  38. // 联系电话
  39. @ApiParam(name = "联系电话")
  40. @ApiModelProperty(value = "联系电话", name = "depPersTel")
  41. private String depPersTel;
  42. // 单位地址
  43. @ApiParam(name = "单位地址")
  44. @ApiModelProperty(value = "单位地址", name = "loc")
  45. private String loc;
  46. // 经度
  47. @ApiParam(name = "经度")
  48. @ApiModelProperty(value = "经度", name = "centerX")
  49. private Double centerX;
  50. // 纬度
  51. @ApiParam(name = "纬度")
  52. @ApiModelProperty(value = "纬度", name = "centerY")
  53. private Double centerY;
  54. // 高德经度
  55. @ApiParam(name = "高德经度")
  56. @ApiModelProperty(value = "高德经度", name = "gdX")
  57. private Double gdX;
  58. // 高德纬度
  59. @ApiParam(name = "高德纬度")
  60. @ApiModelProperty(value = "高德纬度", name = "gdY")
  61. private Double gdY;
  62. // 创建时间
  63. @ApiParam(name = "创建时间")
  64. @ApiModelProperty(value = "创建时间", name = "intm")
  65. private Date intm;
  66. // 修改时间
  67. @ApiParam(name = "修改时间")
  68. @ApiModelProperty(value = "修改时间", name = "uptm")
  69. private Date uptm;
  70. // 数据状态(0:正常;9:删除)
  71. @ApiParam(name = "数据状态(0:正常;9:删除)")
  72. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  73. private String dataStat;
  74. public AttWtgtBaseParam() {
  75. }
  76. public String getId() {
  77. return id;
  78. }
  79. public void setId(String id) {
  80. this.id = id;
  81. }
  82. public String getDepName() {
  83. return depName;
  84. }
  85. public void setDepName(String depName) {
  86. this.depName = depName;
  87. }
  88. public String getAdCode() {
  89. return adCode;
  90. }
  91. public void setAdCode(String adCode) {
  92. this.adCode = adCode;
  93. }
  94. public String getAdName() {
  95. return adName;
  96. }
  97. public void setAdName(String adName) {
  98. this.adName = adName;
  99. }
  100. public String getWintCode() {
  101. return wintCode;
  102. }
  103. public void setWintCode(String wintCode) {
  104. this.wintCode = wintCode;
  105. }
  106. public String getDepPers() {
  107. return depPers;
  108. }
  109. public void setDepPers(String depPers) {
  110. this.depPers = depPers;
  111. }
  112. public String getDepPersTel() {
  113. return depPersTel;
  114. }
  115. public void setDepPersTel(String depPersTel) {
  116. this.depPersTel = depPersTel;
  117. }
  118. public String getLoc() {
  119. return loc;
  120. }
  121. public void setLoc(String loc) {
  122. this.loc = loc;
  123. }
  124. public Double getCenterX() {
  125. return centerX;
  126. }
  127. public void setCenterX(Double centerX) {
  128. this.centerX = centerX;
  129. }
  130. public Double getCenterY() {
  131. return centerY;
  132. }
  133. public void setCenterY(Double centerY) {
  134. this.centerY = centerY;
  135. }
  136. public Double getGdX() {
  137. return gdX;
  138. }
  139. public void setGdX(Double gdX) {
  140. this.gdX = gdX;
  141. }
  142. public Double getGdY() {
  143. return gdY;
  144. }
  145. public void setGdY(Double gdY) {
  146. this.gdY = gdY;
  147. }
  148. public Date getIntm() {
  149. return intm;
  150. }
  151. public void setIntm(Date intm) {
  152. this.intm = intm;
  153. }
  154. public Date getUptm() {
  155. return uptm;
  156. }
  157. public void setUptm(Date uptm) {
  158. this.uptm = uptm;
  159. }
  160. public String getDataStat() {
  161. return dataStat;
  162. }
  163. public void setDataStat(String dataStat) {
  164. this.dataStat = dataStat;
  165. }
  166. }