8fddd31f749f3006eeaeaae7aa695aa54e315725.svn-base 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspRsvrRgstrChkInfo
  9. *
  10. * @author lune
  11. * @date 2021年4月14日
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRsvrynRgstrChkInfo extends BaseBean implements Serializable {
  15. @ApiModelProperty(value = "主键ID", position = 1)
  16. private String id;
  17. @ApiModelProperty(value = "水库督查登记ID", position = 2)
  18. private String rgstrId;
  19. @ApiModelProperty(value = "初查年度", position = 3)
  20. private String inspYear;
  21. @ApiModelProperty(value = "原工况评价", position = 4)
  22. private String wcEvltOld;
  23. @ApiModelProperty(value = "工况总体评价(1:重大安全隐患;2:一般安全隐患;3:正常安全运行;)", position = 5)
  24. private String wcEvltNow;
  25. @ApiModelProperty(value = "重大安全隐患主要表现", position = 6)
  26. private String mshTmp;
  27. @ApiModelProperty(value = "水库检查类型(1:重大安全隐患排查;2:整改情况复查;3:其他)", position = 7)
  28. private String chkType;
  29. @ApiModelProperty(value = "是否已实施除险加固(1:是;2:否;)", position = 8)
  30. private String isTrhbco;
  31. @ApiModelProperty(value = "已实施除险加固情况(1:遗留问题;2:灾后薄弱;3:遗留问题及灾后薄弱;)", position = 9)
  32. private String trhbcoInfo;
  33. @ApiModelProperty(value = "已实施除险加固开工时间", position = 10)
  34. private Date trhbcoSttm;
  35. @ApiModelProperty(value = "已实施除险加固完工时间", position = 11)
  36. private Date trhbcoEntm;
  37. @ApiModelProperty(value = "管理单位", position = 12)
  38. private String mngUnit;
  39. @ApiModelProperty(value = "责任单位", position = 13)
  40. private String dutyUnit;
  41. @ApiModelProperty(value = "备注", position = 14)
  42. private String note;
  43. @ApiModelProperty(value = "填报状态(0:未填报;1:填报中;2:已填报)", position = 15)
  44. private String status;
  45. @ApiModelProperty(value = "记录人员ID", position = 16)
  46. private String persId;
  47. @ApiModelProperty(value = "创建时间", position = 17)
  48. private Date intm;
  49. @ApiModelProperty(value = "最后修改时间", position = 18)
  50. private Date uptm;
  51. @ApiModelProperty(value = "是否到现场", position = 19)
  52. private String isSite;
  53. @ApiModelProperty(value = "重大安全隐患主要表现", position = 20)
  54. private String chkDesc;
  55. public String getChkDesc() {
  56. return chkDesc;
  57. }
  58. public void setChkDesc(String chkDesc) {
  59. this.chkDesc = chkDesc;
  60. }
  61. public String getIsSite() {
  62. return isSite;
  63. }
  64. public void setIsSite(String isSite) {
  65. this.isSite = isSite;
  66. }
  67. public String getId() {
  68. return id;
  69. }
  70. public void setId(String id) {
  71. this.id = id;
  72. }
  73. public String getRgstrId() {
  74. return rgstrId;
  75. }
  76. public void setRgstrId(String rgstrId) {
  77. this.rgstrId = rgstrId;
  78. }
  79. public String getInspYear() {
  80. return inspYear;
  81. }
  82. public void setInspYear(String inspYear) {
  83. this.inspYear = inspYear;
  84. }
  85. public String getWcEvltOld() {
  86. return wcEvltOld;
  87. }
  88. public void setWcEvltOld(String wcEvltOld) {
  89. this.wcEvltOld = wcEvltOld;
  90. }
  91. public String getWcEvltNow() {
  92. return wcEvltNow;
  93. }
  94. public void setWcEvltNow(String wcEvltNow) {
  95. this.wcEvltNow = wcEvltNow;
  96. }
  97. public String getMshTmp() {
  98. return mshTmp;
  99. }
  100. public void setMshTmp(String mshTmp) {
  101. this.mshTmp = mshTmp;
  102. }
  103. public String getChkType() {
  104. return chkType;
  105. }
  106. public void setChkType(String chkType) {
  107. this.chkType = chkType;
  108. }
  109. public String getIsTrhbco() {
  110. return isTrhbco;
  111. }
  112. public void setIsTrhbco(String isTrhbco) {
  113. this.isTrhbco = isTrhbco;
  114. }
  115. public String getTrhbcoInfo() {
  116. return trhbcoInfo;
  117. }
  118. public void setTrhbcoInfo(String trhbcoInfo) {
  119. this.trhbcoInfo = trhbcoInfo;
  120. }
  121. public Date getTrhbcoSttm() {
  122. return trhbcoSttm;
  123. }
  124. public void setTrhbcoSttm(Date trhbcoSttm) {
  125. this.trhbcoSttm = trhbcoSttm;
  126. }
  127. public Date getTrhbcoEntm() {
  128. return trhbcoEntm;
  129. }
  130. public void setTrhbcoEntm(Date trhbcoEntm) {
  131. this.trhbcoEntm = trhbcoEntm;
  132. }
  133. public String getMngUnit() {
  134. return mngUnit;
  135. }
  136. public void setMngUnit(String mngUnit) {
  137. this.mngUnit = mngUnit;
  138. }
  139. public String getDutyUnit() {
  140. return dutyUnit;
  141. }
  142. public void setDutyUnit(String dutyUnit) {
  143. this.dutyUnit = dutyUnit;
  144. }
  145. public String getNote() {
  146. return note;
  147. }
  148. public void setNote(String note) {
  149. this.note = note;
  150. }
  151. public String getStatus() {
  152. return status;
  153. }
  154. public void setStatus(String status) {
  155. this.status = status;
  156. }
  157. public String getPersId() {
  158. return persId;
  159. }
  160. public void setPersId(String persId) {
  161. this.persId = persId;
  162. }
  163. public Date getIntm() {
  164. return intm;
  165. }
  166. public void setIntm(Date intm) {
  167. this.intm = intm;
  168. }
  169. public Date getUptm() {
  170. return uptm;
  171. }
  172. public void setUptm(Date uptm) {
  173. this.uptm = uptm;
  174. }
  175. @Override
  176. public String toString() {
  177. return "BisInspRsvrRgstrChkInfo [" + "id=" + id + ", rgstrId=" + rgstrId + ", inspYear=" + inspYear + ", wcEvltOld=" + wcEvltOld + ", wcEvltNow=" + wcEvltNow + ", mshTmp=" + mshTmp + ", chkType=" + chkType + ", isTrhbco=" + isTrhbco + ", trhbcoInfo=" + trhbcoInfo + ", trhbcoSttm=" + trhbcoSttm + ", trhbcoEntm=" + trhbcoEntm + ", mngUnit=" + mngUnit + ", dutyUnit=" + dutyUnit + ", note=" + note + ", status=" + status + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]";
  178. }
  179. }