d6dceef24466e82cc938abadf249eafb8927b90d.svn-base 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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 BisInspRsvrRgstrChkInfo 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 BisInspRsvrRgstrChkInfo() {
  56. }
  57. public String getChkDesc() {
  58. return chkDesc;
  59. }
  60. public void setChkDesc(String chkDesc) {
  61. this.chkDesc = chkDesc;
  62. }
  63. public String getIsSite() {
  64. return isSite;
  65. }
  66. public void setIsSite(String isSite) {
  67. this.isSite = isSite;
  68. }
  69. public String getId() {
  70. return id;
  71. }
  72. public void setId(String id) {
  73. this.id = id;
  74. }
  75. public String getRgstrId() {
  76. return rgstrId;
  77. }
  78. public void setRgstrId(String rgstrId) {
  79. this.rgstrId = rgstrId;
  80. }
  81. public String getInspYear() {
  82. return inspYear;
  83. }
  84. public void setInspYear(String inspYear) {
  85. this.inspYear = inspYear;
  86. }
  87. public String getWcEvltOld() {
  88. return wcEvltOld;
  89. }
  90. public void setWcEvltOld(String wcEvltOld) {
  91. this.wcEvltOld = wcEvltOld;
  92. }
  93. public String getWcEvltNow() {
  94. return wcEvltNow;
  95. }
  96. public void setWcEvltNow(String wcEvltNow) {
  97. this.wcEvltNow = wcEvltNow;
  98. }
  99. public String getMshTmp() {
  100. return mshTmp;
  101. }
  102. public void setMshTmp(String mshTmp) {
  103. this.mshTmp = mshTmp;
  104. }
  105. public String getChkType() {
  106. return chkType;
  107. }
  108. public void setChkType(String chkType) {
  109. this.chkType = chkType;
  110. }
  111. public String getIsTrhbco() {
  112. return isTrhbco;
  113. }
  114. public void setIsTrhbco(String isTrhbco) {
  115. this.isTrhbco = isTrhbco;
  116. }
  117. public String getTrhbcoInfo() {
  118. return trhbcoInfo;
  119. }
  120. public void setTrhbcoInfo(String trhbcoInfo) {
  121. this.trhbcoInfo = trhbcoInfo;
  122. }
  123. public Date getTrhbcoSttm() {
  124. return trhbcoSttm;
  125. }
  126. public void setTrhbcoSttm(Date trhbcoSttm) {
  127. this.trhbcoSttm = trhbcoSttm;
  128. }
  129. public Date getTrhbcoEntm() {
  130. return trhbcoEntm;
  131. }
  132. public void setTrhbcoEntm(Date trhbcoEntm) {
  133. this.trhbcoEntm = trhbcoEntm;
  134. }
  135. public String getMngUnit() {
  136. return mngUnit;
  137. }
  138. public void setMngUnit(String mngUnit) {
  139. this.mngUnit = mngUnit;
  140. }
  141. public String getDutyUnit() {
  142. return dutyUnit;
  143. }
  144. public void setDutyUnit(String dutyUnit) {
  145. this.dutyUnit = dutyUnit;
  146. }
  147. public String getNote() {
  148. return note;
  149. }
  150. public void setNote(String note) {
  151. this.note = note;
  152. }
  153. public String getStatus() {
  154. return status;
  155. }
  156. public void setStatus(String status) {
  157. this.status = status;
  158. }
  159. public String getPersId() {
  160. return persId;
  161. }
  162. public void setPersId(String persId) {
  163. this.persId = persId;
  164. }
  165. public Date getIntm() {
  166. return intm;
  167. }
  168. public void setIntm(Date intm) {
  169. this.intm = intm;
  170. }
  171. public Date getUptm() {
  172. return uptm;
  173. }
  174. public void setUptm(Date uptm) {
  175. this.uptm = uptm;
  176. }
  177. @Override
  178. public String toString() {
  179. 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 + "]";
  180. }
  181. }