d51f3f94ffd4ad48811369ce70e0175c8f8a0f9e.svn-base 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. * AttGrowBaseParam
  9. *
  10. * @author lhc
  11. * @date 2021-1-22
  12. */
  13. public class AttGrowBaseParam 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 = "wellCode")
  21. private String wellCode;
  22. // 机井名称
  23. @ApiParam(name = "机井名称")
  24. @ApiModelProperty(value = "机井名称", name = "wellName")
  25. private String wellName;
  26. // 行政区划编码
  27. @ApiParam(name = "行政区划编码")
  28. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  29. private String adCode;
  30. // 行政区划名称
  31. @ApiParam(name = "行政区划名称")
  32. @ApiModelProperty(value = "行政区划名称", name = "adName")
  33. private String adName;
  34. // 联系人
  35. @ApiParam(name = "联系人")
  36. @ApiModelProperty(value = "联系人", name = "contact")
  37. private String contact;
  38. // 联系电话
  39. @ApiParam(name = "联系电话")
  40. @ApiModelProperty(value = "联系电话", name = "contactTel")
  41. private String contactTel;
  42. // 成井时间
  43. @ApiParam(name = "成井时间")
  44. @ApiModelProperty(value = "成井时间", name = "wellTime")
  45. private Date wellTime;
  46. // 井深
  47. @ApiParam(name = "井深")
  48. @ApiModelProperty(value = "井深", name = "wellHeight")
  49. private Double wellHeight;
  50. // 机井类型
  51. @ApiParam(name = "机井类型")
  52. @ApiModelProperty(value = "机井类型", name = "wellType")
  53. private String wellType;
  54. // 取水许可证编号
  55. @ApiParam(name = "取水许可证编号")
  56. @ApiModelProperty(value = "取水许可证编号", name = "cardNum")
  57. private String cardNum;
  58. // 一井一档编号
  59. @ApiParam(name = "一井一档编号")
  60. @ApiModelProperty(value = "一井一档编号", name = "filesNum")
  61. private String filesNum;
  62. // 经度
  63. @ApiParam(name = "经度")
  64. @ApiModelProperty(value = "经度", name = "centerX")
  65. private Double centerX;
  66. // 纬度
  67. @ApiParam(name = "纬度")
  68. @ApiModelProperty(value = "纬度", name = "centerY")
  69. private Double centerY;
  70. // 高德经度
  71. @ApiParam(name = "高德经度")
  72. @ApiModelProperty(value = "高德经度", name = "gdX")
  73. private Double gdX;
  74. // 高德纬度
  75. @ApiParam(name = "高德纬度")
  76. @ApiModelProperty(value = "高德纬度", name = "gdY")
  77. private Double gdY;
  78. // 创建人
  79. @ApiParam(name = "创建人")
  80. @ApiModelProperty(value = "创建人", name = "persId")
  81. private String persId;
  82. // 创建时间
  83. @ApiParam(name = "创建时间")
  84. @ApiModelProperty(value = "创建时间", name = "intm")
  85. private Date intm;
  86. // 修改时间
  87. @ApiParam(name = "修改时间")
  88. @ApiModelProperty(value = "修改时间", name = "uptm")
  89. private Date uptm;
  90. // 数据状态(0:正常;9:删除)
  91. @ApiParam(name = "数据状态(0:正常;9:删除)")
  92. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  93. private String dataStat;
  94. public AttGrowBaseParam() {
  95. }
  96. public String getId() {
  97. return id;
  98. }
  99. public void setId(String id) {
  100. this.id = id;
  101. }
  102. public String getWellCode() {
  103. return wellCode;
  104. }
  105. public void setWellCode(String wellCode) {
  106. this.wellCode = wellCode;
  107. }
  108. public String getWellName() {
  109. return wellName;
  110. }
  111. public void setWellName(String wellName) {
  112. this.wellName = wellName;
  113. }
  114. public String getAdCode() {
  115. return adCode;
  116. }
  117. public void setAdCode(String adCode) {
  118. this.adCode = adCode;
  119. }
  120. public String getAdName() {
  121. return adName;
  122. }
  123. public void setAdName(String adName) {
  124. this.adName = adName;
  125. }
  126. public String getContact() {
  127. return contact;
  128. }
  129. public void setContact(String contact) {
  130. this.contact = contact;
  131. }
  132. public String getContactTel() {
  133. return contactTel;
  134. }
  135. public void setContactTel(String contactTel) {
  136. this.contactTel = contactTel;
  137. }
  138. public Date getWellTime() {
  139. return wellTime;
  140. }
  141. public void setWellTime(Date wellTime) {
  142. this.wellTime = wellTime;
  143. }
  144. public Double getWellHeight() {
  145. return wellHeight;
  146. }
  147. public void setWellHeight(Double wellHeight) {
  148. this.wellHeight = wellHeight;
  149. }
  150. public String getWellType() {
  151. return wellType;
  152. }
  153. public void setWellType(String wellType) {
  154. this.wellType = wellType;
  155. }
  156. public String getCardNum() {
  157. return cardNum;
  158. }
  159. public void setCardNum(String cardNum) {
  160. this.cardNum = cardNum;
  161. }
  162. public String getFilesNum() {
  163. return filesNum;
  164. }
  165. public void setFilesNum(String filesNum) {
  166. this.filesNum = filesNum;
  167. }
  168. public Double getCenterX() {
  169. return centerX;
  170. }
  171. public void setCenterX(Double centerX) {
  172. this.centerX = centerX;
  173. }
  174. public Double getCenterY() {
  175. return centerY;
  176. }
  177. public void setCenterY(Double centerY) {
  178. this.centerY = centerY;
  179. }
  180. public Double getGdX() {
  181. return gdX;
  182. }
  183. public void setGdX(Double gdX) {
  184. this.gdX = gdX;
  185. }
  186. public Double getGdY() {
  187. return gdY;
  188. }
  189. public void setGdY(Double gdY) {
  190. this.gdY = gdY;
  191. }
  192. public String getPersId() {
  193. return persId;
  194. }
  195. public void setPersId(String persId) {
  196. this.persId = persId;
  197. }
  198. public Date getIntm() {
  199. return intm;
  200. }
  201. public void setIntm(Date intm) {
  202. this.intm = intm;
  203. }
  204. public Date getUptm() {
  205. return uptm;
  206. }
  207. public void setUptm(Date uptm) {
  208. this.uptm = uptm;
  209. }
  210. public String getDataStat() {
  211. return dataStat;
  212. }
  213. public void setDataStat(String dataStat) {
  214. this.dataStat = dataStat;
  215. }
  216. }