1eee69c3afa126a5caf7c2be5f770e908f824b6a.svn-base 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. * BisInspGrowDrouParam
  9. *
  10. * @author lhc
  11. * @date 2021-1-22
  12. */
  13. public class BisInspGrowDrouParam 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 = "rgstrId")
  21. private String rgstrId;
  22. // 是否拔泵
  23. @ApiParam(name = "是否拔泵")
  24. @ApiModelProperty(value = "是否拔泵", name = "isDrawPump")
  25. private String isDrawPump;
  26. // 是否拆除启动柜
  27. @ApiParam(name = "是否拆除启动柜")
  28. @ApiModelProperty(value = "是否拆除启动柜", name = "isDisCab")
  29. private String isDisCab;
  30. // 是否拆除配电箱
  31. @ApiParam(name = "是否拆除配电箱")
  32. @ApiModelProperty(value = "是否拆除配电箱", name = "isDisBox")
  33. private String isDisBox;
  34. // 是否封存井口
  35. @ApiParam(name = "是否封存井口")
  36. @ApiModelProperty(value = "是否封存井口", name = "isSealWell")
  37. private String isSealWell;
  38. // 坐标是否一致
  39. @ApiParam(name = "坐标是否一致")
  40. @ApiModelProperty(value = "坐标是否一致", name = "isCoorIden")
  41. private String isCoorIden;
  42. // 是否设立标识牌
  43. @ApiParam(name = "是否设立标识牌")
  44. @ApiModelProperty(value = "是否设立标识牌", name = "isEstabCard")
  45. private String isEstabCard;
  46. // 是否具有防汛抗旱应急预案
  47. @ApiParam(name = "是否具有防汛抗旱应急预案")
  48. @ApiModelProperty(value = "是否具有防汛抗旱应急预案", name = "isDrouPro")
  49. private String isDrouPro;
  50. // 填报状态
  51. @ApiParam(name = "填报状态")
  52. @ApiModelProperty(value = "填报状态", name = "state")
  53. private String state;
  54. // 记录人员ID
  55. @ApiParam(name = "记录人员ID")
  56. @ApiModelProperty(value = "记录人员ID", name = "persId")
  57. private String persId;
  58. // 创建时间
  59. @ApiParam(name = "创建时间")
  60. @ApiModelProperty(value = "创建时间", name = "intm")
  61. private Date intm;
  62. // 修改时间
  63. @ApiParam(name = "修改时间")
  64. @ApiModelProperty(value = "修改时间", name = "uptm")
  65. private Date uptm;
  66. // 数据状态
  67. @ApiParam(name = "数据状态")
  68. @ApiModelProperty(value = "数据状态", name = "dataStat")
  69. private String dataStat;
  70. public BisInspGrowDrouParam() {
  71. }
  72. public String getId() {
  73. return id;
  74. }
  75. public void setId(String id) {
  76. this.id = id;
  77. }
  78. public String getRgstrId() {
  79. return rgstrId;
  80. }
  81. public void setRgstrId(String rgstrId) {
  82. this.rgstrId = rgstrId;
  83. }
  84. public String getIsDrawPump() {
  85. return isDrawPump;
  86. }
  87. public void setIsDrawPump(String isDrawPump) {
  88. this.isDrawPump = isDrawPump;
  89. }
  90. public String getIsDisCab() {
  91. return isDisCab;
  92. }
  93. public void setIsDisCab(String isDisCab) {
  94. this.isDisCab = isDisCab;
  95. }
  96. public String getIsDisBox() {
  97. return isDisBox;
  98. }
  99. public void setIsDisBox(String isDisBox) {
  100. this.isDisBox = isDisBox;
  101. }
  102. public String getIsSealWell() {
  103. return isSealWell;
  104. }
  105. public void setIsSealWell(String isSealWell) {
  106. this.isSealWell = isSealWell;
  107. }
  108. public String getIsCoorIden() {
  109. return isCoorIden;
  110. }
  111. public void setIsCoorIden(String isCoorIden) {
  112. this.isCoorIden = isCoorIden;
  113. }
  114. public String getIsEstabCard() {
  115. return isEstabCard;
  116. }
  117. public void setIsEstabCard(String isEstabCard) {
  118. this.isEstabCard = isEstabCard;
  119. }
  120. public String getIsDrouPro() {
  121. return isDrouPro;
  122. }
  123. public void setIsDrouPro(String isDrouPro) {
  124. this.isDrouPro = isDrouPro;
  125. }
  126. public String getState() {
  127. return state;
  128. }
  129. public void setState(String state) {
  130. this.state = state;
  131. }
  132. public String getPersId() {
  133. return persId;
  134. }
  135. public void setPersId(String persId) {
  136. this.persId = persId;
  137. }
  138. public Date getIntm() {
  139. return intm;
  140. }
  141. public void setIntm(Date intm) {
  142. this.intm = intm;
  143. }
  144. public Date getUptm() {
  145. return uptm;
  146. }
  147. public void setUptm(Date uptm) {
  148. this.uptm = uptm;
  149. }
  150. public String getDataStat() {
  151. return dataStat;
  152. }
  153. public void setDataStat(String dataStat) {
  154. this.dataStat = dataStat;
  155. }
  156. }