962761d39c7a031266dcb02e403f0d888f53ab9e.svn-base 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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. * BisInspGrowRgstrParam
  9. *
  10. * @author lhc
  11. * @date 2021-1-22
  12. */
  13. public class BisInspGrowRgstrParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 督查对象ID
  19. @ApiParam(name = "督查对象ID")
  20. @ApiModelProperty(value = "督查对象ID", name = "objId")
  21. private String objId;
  22. // 机井编码
  23. @ApiParam(name = "机井编码")
  24. @ApiModelProperty(value = "机井编码", name = "wellCode")
  25. private String wellCode;
  26. // 机井名称
  27. @ApiParam(name = "机井名称")
  28. @ApiModelProperty(value = "机井名称", name = "wellName")
  29. private String wellName;
  30. // 行政区划编码
  31. @ApiParam(name = "行政区划编码")
  32. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  33. private String adCode;
  34. // 行政区划名称
  35. @ApiParam(name = "行政区划名称")
  36. @ApiModelProperty(value = "行政区划名称", name = "adName")
  37. private String adName;
  38. // 机井类型
  39. @ApiParam(name = "机井类型")
  40. @ApiModelProperty(value = "机井类型", name = "wellType")
  41. private String wellType;
  42. // 取水许可证编号
  43. @ApiParam(name = "取水许可证编号")
  44. @ApiModelProperty(value = "取水许可证编号", name = "cardNum")
  45. private String cardNum;
  46. // 一井一档编号
  47. @ApiParam(name = "一井一档编号")
  48. @ApiModelProperty(value = "一井一档编号", name = "filesNum")
  49. private String filesNum;
  50. // 经度
  51. @ApiParam(name = "经度")
  52. @ApiModelProperty(value = "经度", name = "centerX")
  53. private Double centerX;
  54. // 纬度
  55. @ApiParam(name = "纬度")
  56. @ApiModelProperty(value = "纬度", name = "centerY")
  57. private Double centerY;
  58. // 高德经度
  59. @ApiParam(name = "高德经度")
  60. @ApiModelProperty(value = "高德经度", name = "gdX")
  61. private Double gdX;
  62. // 高德纬度
  63. @ApiParam(name = "高德纬度")
  64. @ApiModelProperty(value = "高德纬度", name = "gdY")
  65. private Double gdY;
  66. // 督查市域外保留井填报状态
  67. @ApiParam(name = "督查市域外保留井填报状态")
  68. @ApiModelProperty(value = "督查市域外保留井填报状态", name = "growOutState")
  69. private String growOutState;
  70. // 督查市域内保留井填报状态
  71. @ApiParam(name = "督查市域内保留井填报状态")
  72. @ApiModelProperty(value = "督查市域内保留井填报状态", name = "growWithState")
  73. private String growWithState;
  74. // 督查抗旱井填报状态
  75. @ApiParam(name = "督查抗旱井填报状态")
  76. @ApiModelProperty(value = "督查抗旱井填报状态", name = "growDrouState")
  77. private String growDrouState;
  78. // 督查关闭井填报状态
  79. @ApiParam(name = "督查关闭井填报状态")
  80. @ApiModelProperty(value = "督查关闭井填报状态", name = "growCloState")
  81. private String growCloState;
  82. // 督查状态
  83. @ApiParam(name = "督查状态")
  84. @ApiModelProperty(value = "督查状态", name = "state")
  85. private String state;
  86. // 创建人
  87. @ApiParam(name = "创建人")
  88. @ApiModelProperty(value = "创建人", name = "persId")
  89. private String persId;
  90. // 创建时间
  91. @ApiParam(name = "创建时间")
  92. @ApiModelProperty(value = "创建时间", name = "intm")
  93. private Date intm;
  94. // 修改时间
  95. @ApiParam(name = "修改时间")
  96. @ApiModelProperty(value = "修改时间", name = "uptm")
  97. private Date uptm;
  98. // 督查组ID
  99. @ApiParam(name = "督查组ID")
  100. @ApiModelProperty(value = "督查组ID", name = "groupId")
  101. private String groupId;
  102. // 数据状态
  103. @ApiParam(name = "数据状态")
  104. @ApiModelProperty(value = "数据状态", name = "dataStat")
  105. private String dataStat;
  106. //督查计划ID
  107. @ApiParam(name = "督查计划ID")
  108. @ApiModelProperty(value = "督查计划ID", name = "plnaId")
  109. private String plnaId;
  110. @ApiParam(name = "时间条件-开始时间")
  111. @ApiModelProperty(value = "时间条件-开始时间", name = "sttm")
  112. private String sttm;
  113. @ApiParam(name = "时间条件-结束时间")
  114. @ApiModelProperty(value = "时间条件-结束时间", name = "entm")
  115. private String entm;
  116. public String getSttm() {
  117. return sttm;
  118. }
  119. public void setSttm(String sttm) {
  120. this.sttm = sttm;
  121. }
  122. public String getEntm() {
  123. return entm;
  124. }
  125. public void setEntm(String entm) {
  126. this.entm = entm;
  127. }
  128. public String getPlnaId() {
  129. return plnaId;
  130. }
  131. public void setPlnaId(String plnaId) {
  132. this.plnaId = plnaId;
  133. }
  134. public BisInspGrowRgstrParam() {
  135. }
  136. public String getId() {
  137. return id;
  138. }
  139. public void setId(String id) {
  140. this.id = id;
  141. }
  142. public String getObjId() {
  143. return objId;
  144. }
  145. public void setObjId(String objId) {
  146. this.objId = objId;
  147. }
  148. public String getWellCode() {
  149. return wellCode;
  150. }
  151. public void setWellCode(String wellCode) {
  152. this.wellCode = wellCode;
  153. }
  154. public String getWellName() {
  155. return wellName;
  156. }
  157. public void setWellName(String wellName) {
  158. this.wellName = wellName;
  159. }
  160. public String getAdCode() {
  161. return adCode;
  162. }
  163. public void setAdCode(String adCode) {
  164. this.adCode = adCode;
  165. }
  166. public String getAdName() {
  167. return adName;
  168. }
  169. public void setAdName(String adName) {
  170. this.adName = adName;
  171. }
  172. public String getWellType() {
  173. return wellType;
  174. }
  175. public void setWellType(String wellType) {
  176. this.wellType = wellType;
  177. }
  178. public String getCardNum() {
  179. return cardNum;
  180. }
  181. public void setCardNum(String cardNum) {
  182. this.cardNum = cardNum;
  183. }
  184. public String getFilesNum() {
  185. return filesNum;
  186. }
  187. public void setFilesNum(String filesNum) {
  188. this.filesNum = filesNum;
  189. }
  190. public Double getCenterX() {
  191. return centerX;
  192. }
  193. public void setCenterX(Double centerX) {
  194. this.centerX = centerX;
  195. }
  196. public Double getCenterY() {
  197. return centerY;
  198. }
  199. public void setCenterY(Double centerY) {
  200. this.centerY = centerY;
  201. }
  202. public Double getGdX() {
  203. return gdX;
  204. }
  205. public void setGdX(Double gdX) {
  206. this.gdX = gdX;
  207. }
  208. public Double getGdY() {
  209. return gdY;
  210. }
  211. public void setGdY(Double gdY) {
  212. this.gdY = gdY;
  213. }
  214. public String getGrowOutState() {
  215. return growOutState;
  216. }
  217. public void setGrowOutState(String growOutState) {
  218. this.growOutState = growOutState;
  219. }
  220. public String getGrowWithState() {
  221. return growWithState;
  222. }
  223. public void setGrowWithState(String growWithState) {
  224. this.growWithState = growWithState;
  225. }
  226. public String getGrowDrouState() {
  227. return growDrouState;
  228. }
  229. public void setGrowDrouState(String growDrouState) {
  230. this.growDrouState = growDrouState;
  231. }
  232. public String getGrowCloState() {
  233. return growCloState;
  234. }
  235. public void setGrowCloState(String growCloState) {
  236. this.growCloState = growCloState;
  237. }
  238. public String getState() {
  239. return state;
  240. }
  241. public void setState(String state) {
  242. this.state = state;
  243. }
  244. public String getPersId() {
  245. return persId;
  246. }
  247. public void setPersId(String persId) {
  248. this.persId = persId;
  249. }
  250. public Date getIntm() {
  251. return intm;
  252. }
  253. public void setIntm(Date intm) {
  254. this.intm = intm;
  255. }
  256. public Date getUptm() {
  257. return uptm;
  258. }
  259. public void setUptm(Date uptm) {
  260. this.uptm = uptm;
  261. }
  262. public String getGroupId() {
  263. return groupId;
  264. }
  265. public void setGroupId(String groupId) {
  266. this.groupId = groupId;
  267. }
  268. public String getDataStat() {
  269. return dataStat;
  270. }
  271. public void setDataStat(String dataStat) {
  272. this.dataStat = dataStat;
  273. }
  274. }