adce357210419ed473a3b85013d76f18a68c62cd.svn-base 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. * BisInspHystpBldfltParam
  9. *
  10. * @author lhc
  11. * @date 2022-3-23
  12. */
  13. public class BisInspHystpBldfltParam 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 = "isBckwtFlaw")
  25. private String isBckwtFlaw;
  26. // 调压设施是否 有明显缺陷
  27. @ApiParam(name = "调压设施是否 有明显缺陷")
  28. @ApiModelProperty(value = "调压设施是否 有明显缺陷", name = "isDpsvFlaw")
  29. private String isDpsvFlaw;
  30. // 压力管道、 镇支墩是否 有明显缺陷
  31. @ApiParam(name = "压力管道、 镇支墩是否 有明显缺陷")
  32. @ApiModelProperty(value = "压力管道、 镇支墩是否 有明显缺陷", name = "isPrpeFlaw")
  33. private String isPrpeFlaw;
  34. // 压力钢管(含阀组)是否有明显缺陷
  35. @ApiParam(name = "压力钢管(含阀组)是否有明显缺陷")
  36. @ApiModelProperty(value = "压力钢管(含阀组)是否有明显缺陷", name = "isPrstpeFlaw")
  37. private String isPrstpeFlaw;
  38. // 压力前池是否 有明显缺陷
  39. @ApiParam(name = "压力前池是否 有明显缺陷")
  40. @ApiModelProperty(value = "压力前池是否 有明显缺陷", name = "isPrpoFlaw")
  41. private String isPrpoFlaw;
  42. // 闸门 ( 工作、检修、事故、尾水闸门)是否有明显缺陷
  43. @ApiParam(name = "闸门 ( 工作、检修、事故、尾水闸门)是否有明显缺陷")
  44. @ApiModelProperty(value = "闸门 ( 工作、检修、事故、尾水闸门)是否有明显缺陷", name = "isGateFlaw")
  45. private String isGateFlaw;
  46. // 厂房是否 有明显缺陷
  47. @ApiParam(name = "厂房是否 有明显缺陷")
  48. @ApiModelProperty(value = "厂房是否 有明显缺陷", name = "isPlantFlaw")
  49. private String isPlantFlaw;
  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 = "note")
  65. private String note;
  66. // 数据状态(0:正常;9:删除)
  67. @ApiParam(name = "数据状态(0:正常;9:删除)")
  68. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  69. private String dataStat;
  70. // 状态
  71. @ApiParam(name = "状态")
  72. @ApiModelProperty(value = "状态", name = "state")
  73. private String state;
  74. public BisInspHystpBldfltParam() {
  75. }
  76. public String getId() {
  77. return id;
  78. }
  79. public void setId(String id) {
  80. this.id = id;
  81. }
  82. public String getRgstrId() {
  83. return rgstrId;
  84. }
  85. public void setRgstrId(String rgstrId) {
  86. this.rgstrId = rgstrId;
  87. }
  88. public String getIsBckwtFlaw() {
  89. return isBckwtFlaw;
  90. }
  91. public void setIsBckwtFlaw(String isBckwtFlaw) {
  92. this.isBckwtFlaw = isBckwtFlaw;
  93. }
  94. public String getIsDpsvFlaw() {
  95. return isDpsvFlaw;
  96. }
  97. public void setIsDpsvFlaw(String isDpsvFlaw) {
  98. this.isDpsvFlaw = isDpsvFlaw;
  99. }
  100. public String getIsPrpeFlaw() {
  101. return isPrpeFlaw;
  102. }
  103. public void setIsPrpeFlaw(String isPrpeFlaw) {
  104. this.isPrpeFlaw = isPrpeFlaw;
  105. }
  106. public String getIsPrstpeFlaw() {
  107. return isPrstpeFlaw;
  108. }
  109. public void setIsPrstpeFlaw(String isPrstpeFlaw) {
  110. this.isPrstpeFlaw = isPrstpeFlaw;
  111. }
  112. public String getIsPrpoFlaw() {
  113. return isPrpoFlaw;
  114. }
  115. public void setIsPrpoFlaw(String isPrpoFlaw) {
  116. this.isPrpoFlaw = isPrpoFlaw;
  117. }
  118. public String getIsGateFlaw() {
  119. return isGateFlaw;
  120. }
  121. public void setIsGateFlaw(String isGateFlaw) {
  122. this.isGateFlaw = isGateFlaw;
  123. }
  124. public String getIsPlantFlaw() {
  125. return isPlantFlaw;
  126. }
  127. public void setIsPlantFlaw(String isPlantFlaw) {
  128. this.isPlantFlaw = isPlantFlaw;
  129. }
  130. public String getPersId() {
  131. return persId;
  132. }
  133. public void setPersId(String persId) {
  134. this.persId = persId;
  135. }
  136. public Date getIntm() {
  137. return intm;
  138. }
  139. public void setIntm(Date intm) {
  140. this.intm = intm;
  141. }
  142. public Date getUptm() {
  143. return uptm;
  144. }
  145. public void setUptm(Date uptm) {
  146. this.uptm = uptm;
  147. }
  148. public String getNote() {
  149. return note;
  150. }
  151. public void setNote(String note) {
  152. this.note = note;
  153. }
  154. public String getDataStat() {
  155. return dataStat;
  156. }
  157. public void setDataStat(String dataStat) {
  158. this.dataStat = dataStat;
  159. }
  160. public String getState() {
  161. return state;
  162. }
  163. public void setState(String state) {
  164. this.state = state;
  165. }
  166. }