33c660f7b3e5dfd0563a57acf5e7fd2e1526a81b.svn-base 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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:BisInspAnzeRecord
  9. *
  10. * @author lql
  11. * @date 2026-4-21
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspAnzeRecord 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 = "safetyEducation")
  23. private String safetyEducation;
  24. // 安全风险辨识、评估和安全评价
  25. @ApiModelProperty(value = "安全风险辨识、评估和安全评价", name = "riskAssessment")
  26. private String riskAssessment;
  27. // 生产安全事故隐患排查
  28. @ApiModelProperty(value = "生产安全事故隐患排查", name = "hazardInvestigation")
  29. private String hazardInvestigation;
  30. // 安全生产标准化建设
  31. @ApiModelProperty(value = "安全生产标准化建设", name = "standardization")
  32. private String standardization;
  33. // 生产安全事故应急预案编制和演练
  34. @ApiModelProperty(value = "生产安全事故应急预案编制和演练", name = "emergencyPlan")
  35. private String emergencyPlan;
  36. // 安全生产技术推广应用及其他事故预防工作
  37. @ApiModelProperty(value = "安全生产技术推广应用及其他事故预防工作", name = "techPromotion")
  38. private String techPromotion;
  39. // 记录人员ID
  40. @ApiModelProperty(value = "记录人员ID", name = "persId")
  41. private String persId;
  42. // 创建时间
  43. @ApiModelProperty(value = "创建时间", name = "intm")
  44. private Date intm;
  45. // 最后修改时间
  46. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  47. private Date uptm;
  48. // 备注
  49. @ApiModelProperty(value = "备注", name = "note")
  50. private String note;
  51. // 数据状态
  52. @ApiModelProperty(value = "数据状态", name = "dataStat")
  53. private String dataStat;
  54. // 是否完成(0:未完成,1:已完成)
  55. @ApiModelProperty(value="是否完成(0:未完成,1:已完成)",name="state")
  56. private String state;
  57. // 投保年份(YEAR)
  58. @ApiModelProperty(value="投保年份(YEAR)",name="year")
  59. private String year;
  60. public BisInspAnzeRecord() {
  61. }
  62. public String getYear() {
  63. return year;
  64. }
  65. public void setYear(String year) {
  66. this.year = year;
  67. }
  68. public String getState() {
  69. return state;
  70. }
  71. public void setState(String state) {
  72. this.state = state;
  73. }
  74. public String getId() {
  75. return id;
  76. }
  77. public void setId(String id) {
  78. this.id = id;
  79. }
  80. public String getRgstrId() {
  81. return rgstrId;
  82. }
  83. public void setRgstrId(String rgstrId) {
  84. this.rgstrId = rgstrId;
  85. }
  86. public String getSafetyEducation() {
  87. return safetyEducation;
  88. }
  89. public void setSafetyEducation(String safetyEducation) {
  90. this.safetyEducation = safetyEducation;
  91. }
  92. public String getRiskAssessment() {
  93. return riskAssessment;
  94. }
  95. public void setRiskAssessment(String riskAssessment) {
  96. this.riskAssessment = riskAssessment;
  97. }
  98. public String getHazardInvestigation() {
  99. return hazardInvestigation;
  100. }
  101. public void setHazardInvestigation(String hazardInvestigation) {
  102. this.hazardInvestigation = hazardInvestigation;
  103. }
  104. public String getStandardization() {
  105. return standardization;
  106. }
  107. public void setStandardization(String standardization) {
  108. this.standardization = standardization;
  109. }
  110. public String getEmergencyPlan() {
  111. return emergencyPlan;
  112. }
  113. public void setEmergencyPlan(String emergencyPlan) {
  114. this.emergencyPlan = emergencyPlan;
  115. }
  116. public String getTechPromotion() {
  117. return techPromotion;
  118. }
  119. public void setTechPromotion(String techPromotion) {
  120. this.techPromotion = techPromotion;
  121. }
  122. public String getPersId() {
  123. return persId;
  124. }
  125. public void setPersId(String persId) {
  126. this.persId = persId;
  127. }
  128. public Date getIntm() {
  129. return intm;
  130. }
  131. public void setIntm(Date intm) {
  132. this.intm = intm;
  133. }
  134. public Date getUptm() {
  135. return uptm;
  136. }
  137. public void setUptm(Date uptm) {
  138. this.uptm = uptm;
  139. }
  140. public String getNote() {
  141. return note;
  142. }
  143. public void setNote(String note) {
  144. this.note = note;
  145. }
  146. public String getDataStat() {
  147. return dataStat;
  148. }
  149. public void setDataStat(String dataStat) {
  150. this.dataStat = dataStat;
  151. }
  152. @Override
  153. public String toString() {
  154. return "BisInspAnzeRecord [" + "id=" + id + ", rgstrId=" + rgstrId + ", safetyEducation=" + safetyEducation + ", riskAssessment=" + riskAssessment + ", hazardInvestigation=" + hazardInvestigation + ", standardization=" + standardization + ", emergencyPlan=" + emergencyPlan + ", techPromotion=" + techPromotion + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  155. }
  156. }