33e568c65be723462aace7072d49ab47b2616b31.svn-base 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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:BisInspHystpDvc
  9. *
  10. * @author lhc
  11. * @date 2022-3-23
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspHystpDvc 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="isPwrRqr")
  23. private String isPwrRqr;
  24. // 特种设备是否 定期检验
  25. @ApiModelProperty(value="特种设备是否 定期检验",name="isDvcChk")
  26. private String isDvcChk;
  27. // 应急预案情况-已编制
  28. @ApiModelProperty(value="应急预案情况-已编制",name="isPlanMak")
  29. private String isPlanMak;
  30. // 应急预案情况-已报批
  31. @ApiModelProperty(value="应急预案情况-已报批",name="isPlanApp")
  32. private String isPlanApp;
  33. // 应急预案情况-已演练
  34. @ApiModelProperty(value="应急预案情况-已演练",name="isPlanDemo")
  35. private String isPlanDemo;
  36. // 记录人员ID
  37. @ApiModelProperty(value="记录人员ID",name="persId")
  38. private String persId;
  39. // 创建时间
  40. @ApiModelProperty(value="创建时间",name="intm")
  41. private Date intm;
  42. // 最后修改时间
  43. @ApiModelProperty(value="最后修改时间",name="uptm")
  44. private Date uptm;
  45. // 备注
  46. @ApiModelProperty(value="备注",name="note")
  47. private String note;
  48. // 数据状态(0:正常;9:删除)
  49. @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
  50. private String dataStat;
  51. // 状态
  52. @ApiModelProperty(value="状态",name="state")
  53. private String state;
  54. public BisInspHystpDvc() {
  55. }
  56. public String getId() {
  57. return id;
  58. }
  59. public void setId(String id) {
  60. this.id = id;
  61. }
  62. public String getRgstrId() {
  63. return rgstrId;
  64. }
  65. public void setRgstrId(String rgstrId) {
  66. this.rgstrId = rgstrId;
  67. }
  68. public String getIsPwrRqr() {
  69. return isPwrRqr;
  70. }
  71. public void setIsPwrRqr(String isPwrRqr) {
  72. this.isPwrRqr = isPwrRqr;
  73. }
  74. public String getIsDvcChk() {
  75. return isDvcChk;
  76. }
  77. public void setIsDvcChk(String isDvcChk) {
  78. this.isDvcChk = isDvcChk;
  79. }
  80. public String getIsPlanMak() {
  81. return isPlanMak;
  82. }
  83. public void setIsPlanMak(String isPlanMak) {
  84. this.isPlanMak = isPlanMak;
  85. }
  86. public String getIsPlanApp() {
  87. return isPlanApp;
  88. }
  89. public void setIsPlanApp(String isPlanApp) {
  90. this.isPlanApp = isPlanApp;
  91. }
  92. public String getIsPlanDemo() {
  93. return isPlanDemo;
  94. }
  95. public void setIsPlanDemo(String isPlanDemo) {
  96. this.isPlanDemo = isPlanDemo;
  97. }
  98. public String getPersId() {
  99. return persId;
  100. }
  101. public void setPersId(String persId) {
  102. this.persId = persId;
  103. }
  104. public Date getIntm() {
  105. return intm;
  106. }
  107. public void setIntm(Date intm) {
  108. this.intm = intm;
  109. }
  110. public Date getUptm() {
  111. return uptm;
  112. }
  113. public void setUptm(Date uptm) {
  114. this.uptm = uptm;
  115. }
  116. public String getNote() {
  117. return note;
  118. }
  119. public void setNote(String note) {
  120. this.note = note;
  121. }
  122. public String getDataStat() {
  123. return dataStat;
  124. }
  125. public void setDataStat(String dataStat) {
  126. this.dataStat = dataStat;
  127. }
  128. public String getState() {
  129. return state;
  130. }
  131. public void setState(String state) {
  132. this.state = state;
  133. }
  134. @Override
  135. public String toString() {
  136. return "BisInspHystpDvc [" + "id=" + id + ", rgstrId=" + rgstrId + ", isPwrRqr=" + isPwrRqr + ", isDvcChk=" + isDvcChk + ", isPlanMak=" + isPlanMak + ", isPlanApp=" + isPlanApp + ", isPlanDemo=" + isPlanDemo + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + ", state=" + state + "]";
  137. }
  138. }