de2c988f1e5401a0c166eadff7da544e942760c5.svn-base 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspHystpBldflt
  9. *
  10. * @author lhc
  11. * @date 2022-3-23
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspHystpBldflt extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value="主键ID",name="id")
  17. private String id;
  18. // 登记表ID
  19. @ApiModelProperty(value="登记表ID",name="rgstrId")
  20. private String rgstrId;
  21. // 挡水堰坝是否 有明确缺陷
  22. @ApiModelProperty(value="挡水堰坝是否 有明确缺陷",name="isBckwtFlaw")
  23. private String isBckwtFlaw;
  24. // 调压设施是否 有明显缺陷
  25. @ApiModelProperty(value="调压设施是否 有明显缺陷",name="isDpsvFlaw")
  26. private String isDpsvFlaw;
  27. // 压力管道、 镇支墩是否 有明显缺陷
  28. @ApiModelProperty(value="压力管道、 镇支墩是否 有明显缺陷",name="isPrpeFlaw")
  29. private String isPrpeFlaw;
  30. // 压力钢管(含阀组)是否有明显缺陷
  31. @ApiModelProperty(value="压力钢管(含阀组)是否有明显缺陷",name="isPrstpeFlaw")
  32. private String isPrstpeFlaw;
  33. // 压力前池是否 有明显缺陷
  34. @ApiModelProperty(value="压力前池是否 有明显缺陷",name="isPrpoFlaw")
  35. private String isPrpoFlaw;
  36. // 闸门 ( 工作、检修、事故、尾水闸门)是否有明显缺陷
  37. @ApiModelProperty(value="闸门 ( 工作、检修、事故、尾水闸门)是否有明显缺陷",name="isGateFlaw")
  38. private String isGateFlaw;
  39. // 厂房是否 有明显缺陷
  40. @ApiModelProperty(value="厂房是否 有明显缺陷",name="isPlantFlaw")
  41. private String isPlantFlaw;
  42. // 记录人员ID
  43. @ApiModelProperty(value="记录人员ID",name="persId")
  44. private String persId;
  45. // 创建时间
  46. @ApiModelProperty(value="创建时间",name="intm")
  47. private Date intm;
  48. // 最后修改时间
  49. @ApiModelProperty(value="最后修改时间",name="uptm")
  50. private Date uptm;
  51. // 备注
  52. @ApiModelProperty(value="备注",name="note")
  53. private String note;
  54. // 数据状态(0:正常;9:删除)
  55. @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
  56. private String dataStat;
  57. // 状态
  58. @ApiModelProperty(value="状态",name="state")
  59. private String state;
  60. public BisInspHystpBldflt() {
  61. }
  62. public String getId() {
  63. return id;
  64. }
  65. public void setId(String id) {
  66. this.id = id;
  67. }
  68. public String getRgstrId() {
  69. return rgstrId;
  70. }
  71. public void setRgstrId(String rgstrId) {
  72. this.rgstrId = rgstrId;
  73. }
  74. public String getIsBckwtFlaw() {
  75. return isBckwtFlaw;
  76. }
  77. public void setIsBckwtFlaw(String isBckwtFlaw) {
  78. this.isBckwtFlaw = isBckwtFlaw;
  79. }
  80. public String getIsDpsvFlaw() {
  81. return isDpsvFlaw;
  82. }
  83. public void setIsDpsvFlaw(String isDpsvFlaw) {
  84. this.isDpsvFlaw = isDpsvFlaw;
  85. }
  86. public String getIsPrpeFlaw() {
  87. return isPrpeFlaw;
  88. }
  89. public void setIsPrpeFlaw(String isPrpeFlaw) {
  90. this.isPrpeFlaw = isPrpeFlaw;
  91. }
  92. public String getIsPrstpeFlaw() {
  93. return isPrstpeFlaw;
  94. }
  95. public void setIsPrstpeFlaw(String isPrstpeFlaw) {
  96. this.isPrstpeFlaw = isPrstpeFlaw;
  97. }
  98. public String getIsPrpoFlaw() {
  99. return isPrpoFlaw;
  100. }
  101. public void setIsPrpoFlaw(String isPrpoFlaw) {
  102. this.isPrpoFlaw = isPrpoFlaw;
  103. }
  104. public String getIsGateFlaw() {
  105. return isGateFlaw;
  106. }
  107. public void setIsGateFlaw(String isGateFlaw) {
  108. this.isGateFlaw = isGateFlaw;
  109. }
  110. public String getIsPlantFlaw() {
  111. return isPlantFlaw;
  112. }
  113. public void setIsPlantFlaw(String isPlantFlaw) {
  114. this.isPlantFlaw = isPlantFlaw;
  115. }
  116. public String getPersId() {
  117. return persId;
  118. }
  119. public void setPersId(String persId) {
  120. this.persId = persId;
  121. }
  122. public Date getIntm() {
  123. return intm;
  124. }
  125. public void setIntm(Date intm) {
  126. this.intm = intm;
  127. }
  128. public Date getUptm() {
  129. return uptm;
  130. }
  131. public void setUptm(Date uptm) {
  132. this.uptm = uptm;
  133. }
  134. public String getNote() {
  135. return note;
  136. }
  137. public void setNote(String note) {
  138. this.note = note;
  139. }
  140. public String getDataStat() {
  141. return dataStat;
  142. }
  143. public void setDataStat(String dataStat) {
  144. this.dataStat = dataStat;
  145. }
  146. public String getState() {
  147. return state;
  148. }
  149. public void setState(String state) {
  150. this.state = state;
  151. }
  152. @Override
  153. public String toString() {
  154. return "BisInspHystpBldflt [" + "id=" + id + ", rgstrId=" + rgstrId + ", isBckwtFlaw=" + isBckwtFlaw + ", isDpsvFlaw=" + isDpsvFlaw + ", isPrpeFlaw=" + isPrpeFlaw + ", isPrstpeFlaw=" + isPrstpeFlaw + ", isPrpoFlaw=" + isPrpoFlaw + ", isGateFlaw=" + isGateFlaw + ", isPlantFlaw=" + isPlantFlaw + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + ", state=" + state + "]";
  155. }
  156. }