e5e3548dc6e0b9df5ddad002174e24e5b479a897.svn-base 5.6 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. * BisInspGrowWithParam
  9. *
  10. * @author lhc
  11. * @date 2021-1-22
  12. */
  13. public class BisInspGrowWithParam extends PageParam implements Serializable {
  14. // 记录人员ID
  15. @ApiParam(name = "记录人员ID")
  16. @ApiModelProperty(value = "记录人员ID", name = "persId")
  17. private String persId;
  18. // 创建时间
  19. @ApiParam(name = "创建时间")
  20. @ApiModelProperty(value = "创建时间", name = "intm")
  21. private Date intm;
  22. // 修改时间
  23. @ApiParam(name = "修改时间")
  24. @ApiModelProperty(value = "修改时间", name = "uptm")
  25. private Date uptm;
  26. // 数据状态
  27. @ApiParam(name = "数据状态")
  28. @ApiModelProperty(value = "数据状态", name = "dataStat")
  29. private String dataStat;
  30. // 主键ID
  31. @ApiParam(name = "主键ID")
  32. @ApiModelProperty(value = "主键ID", name = "id")
  33. private String id;
  34. // 登记表ID
  35. @ApiParam(name = "登记表ID")
  36. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  37. private String rgstrId;
  38. // 坐标是否一致
  39. @ApiParam(name = "坐标是否一致")
  40. @ApiModelProperty(value = "坐标是否一致", name = "isCoorIden")
  41. private String isCoorIden;
  42. // 是否安装电量控制设备
  43. @ApiParam(name = "是否安装电量控制设备")
  44. @ApiModelProperty(value = "是否安装电量控制设备", name = "isElecEqui")
  45. private String isElecEqui;
  46. // 是否安装流量计
  47. @ApiParam(name = "是否安装流量计")
  48. @ApiModelProperty(value = "是否安装流量计", name = "isWaterEqui")
  49. private String isWaterEqui;
  50. // 取水量、电量比是否正确
  51. @ApiParam(name = "取水量、电量比是否正确")
  52. @ApiModelProperty(value = "取水量、电量比是否正确", name = "isWaterElec")
  53. private String isWaterElec;
  54. // 实际取水量是否超出取水指标
  55. @ApiParam(name = "实际取水量是否超出取水指标")
  56. @ApiModelProperty(value = "实际取水量是否超出取水指标", name = "isWaterIndex")
  57. private String isWaterIndex;
  58. // 实际用电量是否超出指标
  59. @ApiParam(name = "实际用电量是否超出指标")
  60. @ApiModelProperty(value = "实际用电量是否超出指标", name = "isElecIndex")
  61. private String isElecIndex;
  62. // 是否有取水许可证
  63. @ApiParam(name = "是否有取水许可证")
  64. @ApiModelProperty(value = "是否有取水许可证", name = "isCardHaving")
  65. private String isCardHaving;
  66. // 是否有水资源论证报告
  67. @ApiParam(name = "是否有水资源论证报告")
  68. @ApiModelProperty(value = "是否有水资源论证报告", name = "isReportHaving")
  69. private String isReportHaving;
  70. // 是否有其它问题
  71. @ApiParam(name = "是否有其它问题")
  72. @ApiModelProperty(value = "是否有其它问题", name = "isProblemOther")
  73. private String isProblemOther;
  74. // 填报状态
  75. @ApiParam(name = "填报状态")
  76. @ApiModelProperty(value = "填报状态", name = "state")
  77. private String state;
  78. public BisInspGrowWithParam() {
  79. }
  80. public String getPersId() {
  81. return persId;
  82. }
  83. public void setPersId(String persId) {
  84. this.persId = persId;
  85. }
  86. public Date getIntm() {
  87. return intm;
  88. }
  89. public void setIntm(Date intm) {
  90. this.intm = intm;
  91. }
  92. public Date getUptm() {
  93. return uptm;
  94. }
  95. public void setUptm(Date uptm) {
  96. this.uptm = uptm;
  97. }
  98. public String getDataStat() {
  99. return dataStat;
  100. }
  101. public void setDataStat(String dataStat) {
  102. this.dataStat = dataStat;
  103. }
  104. public String getId() {
  105. return id;
  106. }
  107. public void setId(String id) {
  108. this.id = id;
  109. }
  110. public String getRgstrId() {
  111. return rgstrId;
  112. }
  113. public void setRgstrId(String rgstrId) {
  114. this.rgstrId = rgstrId;
  115. }
  116. public String getIsCoorIden() {
  117. return isCoorIden;
  118. }
  119. public void setIsCoorIden(String isCoorIden) {
  120. this.isCoorIden = isCoorIden;
  121. }
  122. public String getIsElecEqui() {
  123. return isElecEqui;
  124. }
  125. public void setIsElecEqui(String isElecEqui) {
  126. this.isElecEqui = isElecEqui;
  127. }
  128. public String getIsWaterEqui() {
  129. return isWaterEqui;
  130. }
  131. public void setIsWaterEqui(String isWaterEqui) {
  132. this.isWaterEqui = isWaterEqui;
  133. }
  134. public String getIsWaterElec() {
  135. return isWaterElec;
  136. }
  137. public void setIsWaterElec(String isWaterElec) {
  138. this.isWaterElec = isWaterElec;
  139. }
  140. public String getIsWaterIndex() {
  141. return isWaterIndex;
  142. }
  143. public void setIsWaterIndex(String isWaterIndex) {
  144. this.isWaterIndex = isWaterIndex;
  145. }
  146. public String getIsElecIndex() {
  147. return isElecIndex;
  148. }
  149. public void setIsElecIndex(String isElecIndex) {
  150. this.isElecIndex = isElecIndex;
  151. }
  152. public String getIsCardHaving() {
  153. return isCardHaving;
  154. }
  155. public void setIsCardHaving(String isCardHaving) {
  156. this.isCardHaving = isCardHaving;
  157. }
  158. public String getIsReportHaving() {
  159. return isReportHaving;
  160. }
  161. public void setIsReportHaving(String isReportHaving) {
  162. this.isReportHaving = isReportHaving;
  163. }
  164. public String getIsProblemOther() {
  165. return isProblemOther;
  166. }
  167. public void setIsProblemOther(String isProblemOther) {
  168. this.isProblemOther = isProblemOther;
  169. }
  170. public String getState() {
  171. return state;
  172. }
  173. public void setState(String state) {
  174. this.state = state;
  175. }
  176. }