3a2c2785d047ce9d0bfa93054ad8e8097646fc6d.svn-base 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. * BisInspGrowCloParam
  9. *
  10. * @author lhc
  11. * @date 2021-1-22
  12. */
  13. public class BisInspGrowCloParam 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 = "state")
  49. private String state;
  50. // 记录人员ID
  51. @ApiParam(name = "记录人员ID")
  52. @ApiModelProperty(value = "记录人员ID", name = "persId")
  53. private String persId;
  54. // 创建时间
  55. @ApiParam(name = "创建时间")
  56. @ApiModelProperty(value = "创建时间", name = "intm")
  57. private Date intm;
  58. // 修改时间
  59. @ApiParam(name = "修改时间")
  60. @ApiModelProperty(value = "修改时间", name = "uptm")
  61. private Date uptm;
  62. // 数据状态
  63. @ApiParam(name = "数据状态")
  64. @ApiModelProperty(value = "数据状态", name = "dataStat")
  65. private String dataStat;
  66. public BisInspGrowCloParam() {
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getRgstrId() {
  75. return rgstrId;
  76. }
  77. public void setRgstrId(String rgstrId) {
  78. this.rgstrId = rgstrId;
  79. }
  80. public String getIsDrawPump() {
  81. return isDrawPump;
  82. }
  83. public void setIsDrawPump(String isDrawPump) {
  84. this.isDrawPump = isDrawPump;
  85. }
  86. public String getIsDisCab() {
  87. return isDisCab;
  88. }
  89. public void setIsDisCab(String isDisCab) {
  90. this.isDisCab = isDisCab;
  91. }
  92. public String getIsDisBox() {
  93. return isDisBox;
  94. }
  95. public void setIsDisBox(String isDisBox) {
  96. this.isDisBox = isDisBox;
  97. }
  98. public String getIsSealWell() {
  99. return isSealWell;
  100. }
  101. public void setIsSealWell(String isSealWell) {
  102. this.isSealWell = isSealWell;
  103. }
  104. public String getIsCoorIden() {
  105. return isCoorIden;
  106. }
  107. public void setIsCoorIden(String isCoorIden) {
  108. this.isCoorIden = isCoorIden;
  109. }
  110. public String getIsEstabCard() {
  111. return isEstabCard;
  112. }
  113. public void setIsEstabCard(String isEstabCard) {
  114. this.isEstabCard = isEstabCard;
  115. }
  116. public String getState() {
  117. return state;
  118. }
  119. public void setState(String state) {
  120. this.state = state;
  121. }
  122. public String getPersId() {
  123. return persId;
  124. }
  125. public void setPersId(String persId) {
  126. this.persId = persId;
  127. }
  128. public Date getIntm() {
  129. return intm;
  130. }
  131. public void setIntm(Date intm) {
  132. this.intm = intm;
  133. }
  134. public Date getUptm() {
  135. return uptm;
  136. }
  137. public void setUptm(Date uptm) {
  138. this.uptm = uptm;
  139. }
  140. public String getDataStat() {
  141. return dataStat;
  142. }
  143. public void setDataStat(String dataStat) {
  144. this.dataStat = dataStat;
  145. }
  146. }