1e0aebe659dce2530d9bfd0124cd6befa91bd101.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. * AttFjpjmgdpBaseParam
  9. *
  10. * @author lhc
  11. * @date 2023-11-8
  12. */
  13. public class AttFjpjmgdpBaseParam 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 = "name")
  21. private String name;
  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 = "busAddr")
  33. private String busAddr;
  34. // 联系人
  35. @ApiParam(name = "联系人")
  36. @ApiModelProperty(value = "联系人", name = "conPers")
  37. private String conPers;
  38. // 联系人电话
  39. @ApiParam(name = "联系人电话")
  40. @ApiModelProperty(value = "联系人电话", name = "conPersTel")
  41. private String conPersTel;
  42. // 经度
  43. @ApiParam(name = "经度")
  44. @ApiModelProperty(value = "经度", name = "centerX")
  45. private Double centerX;
  46. // 纬度
  47. @ApiParam(name = "纬度")
  48. @ApiModelProperty(value = "纬度", name = "centerY")
  49. private Double centerY;
  50. // 高德经度
  51. @ApiParam(name = "高德经度")
  52. @ApiModelProperty(value = "高德经度", name = "gdX")
  53. private Double gdX;
  54. // 高德纬度
  55. @ApiParam(name = "高德纬度")
  56. @ApiModelProperty(value = "高德纬度", name = "gdY")
  57. private Double gdY;
  58. // 记录人员ID
  59. @ApiParam(name = "记录人员ID")
  60. @ApiModelProperty(value = "记录人员ID", name = "persId")
  61. private String persId;
  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. // 备注
  71. @ApiParam(name = "备注")
  72. @ApiModelProperty(value = "备注", name = "note")
  73. private String note;
  74. // 数据状态
  75. @ApiParam(name = "数据状态")
  76. @ApiModelProperty(value = "数据状态", name = "dataStat")
  77. private String dataStat;
  78. public AttFjpjmgdpBaseParam() {
  79. }
  80. public String getId() {
  81. return id;
  82. }
  83. public void setId(String id) {
  84. this.id = id;
  85. }
  86. public String getName() {
  87. return name;
  88. }
  89. public void setName(String name) {
  90. this.name = name;
  91. }
  92. public String getAdCode() {
  93. return adCode;
  94. }
  95. public void setAdCode(String adCode) {
  96. this.adCode = adCode;
  97. }
  98. public String getAdName() {
  99. return adName;
  100. }
  101. public void setAdName(String adName) {
  102. this.adName = adName;
  103. }
  104. public String getBusAddr() {
  105. return busAddr;
  106. }
  107. public void setBusAddr(String busAddr) {
  108. this.busAddr = busAddr;
  109. }
  110. public String getConPers() {
  111. return conPers;
  112. }
  113. public void setConPers(String conPers) {
  114. this.conPers = conPers;
  115. }
  116. public String getConPersTel() {
  117. return conPersTel;
  118. }
  119. public void setConPersTel(String conPersTel) {
  120. this.conPersTel = conPersTel;
  121. }
  122. public Double getCenterX() {
  123. return centerX;
  124. }
  125. public void setCenterX(Double centerX) {
  126. this.centerX = centerX;
  127. }
  128. public Double getCenterY() {
  129. return centerY;
  130. }
  131. public void setCenterY(Double centerY) {
  132. this.centerY = centerY;
  133. }
  134. public Double getGdX() {
  135. return gdX;
  136. }
  137. public void setGdX(Double gdX) {
  138. this.gdX = gdX;
  139. }
  140. public Double getGdY() {
  141. return gdY;
  142. }
  143. public void setGdY(Double gdY) {
  144. this.gdY = gdY;
  145. }
  146. public String getPersId() {
  147. return persId;
  148. }
  149. public void setPersId(String persId) {
  150. this.persId = persId;
  151. }
  152. public Date getIntm() {
  153. return intm;
  154. }
  155. public void setIntm(Date intm) {
  156. this.intm = intm;
  157. }
  158. public Date getUptm() {
  159. return uptm;
  160. }
  161. public void setUptm(Date uptm) {
  162. this.uptm = uptm;
  163. }
  164. public String getNote() {
  165. return note;
  166. }
  167. public void setNote(String note) {
  168. this.note = note;
  169. }
  170. public String getDataStat() {
  171. return dataStat;
  172. }
  173. public void setDataStat(String dataStat) {
  174. this.dataStat = dataStat;
  175. }
  176. }