| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspAnzeRecord
- *
- * @author lql
- * @date 2026-4-21
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspAnzeRecord extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 登记表ID
- @ApiModelProperty(value = "登记表ID", name = "rgstrId")
- private String rgstrId;
- // 安全生产宣传教育培训
- @ApiModelProperty(value = "安全生产宣传教育培训", name = "safetyEducation")
- private String safetyEducation;
- // 安全风险辨识、评估和安全评价
- @ApiModelProperty(value = "安全风险辨识、评估和安全评价", name = "riskAssessment")
- private String riskAssessment;
- // 生产安全事故隐患排查
- @ApiModelProperty(value = "生产安全事故隐患排查", name = "hazardInvestigation")
- private String hazardInvestigation;
- // 安全生产标准化建设
- @ApiModelProperty(value = "安全生产标准化建设", name = "standardization")
- private String standardization;
- // 生产安全事故应急预案编制和演练
- @ApiModelProperty(value = "生产安全事故应急预案编制和演练", name = "emergencyPlan")
- private String emergencyPlan;
- // 安全生产技术推广应用及其他事故预防工作
- @ApiModelProperty(value = "安全生产技术推广应用及其他事故预防工作", name = "techPromotion")
- private String techPromotion;
- // 记录人员ID
- @ApiModelProperty(value = "记录人员ID", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 备注
- @ApiModelProperty(value = "备注", name = "note")
- private String note;
- // 数据状态
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- // 是否完成(0:未完成,1:已完成)
- @ApiModelProperty(value="是否完成(0:未完成,1:已完成)",name="state")
- private String state;
- // 投保年份(YEAR)
- @ApiModelProperty(value="投保年份(YEAR)",name="year")
- private String year;
- public BisInspAnzeRecord() {
- }
- public String getYear() {
- return year;
- }
- public void setYear(String year) {
- this.year = year;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getSafetyEducation() {
- return safetyEducation;
- }
- public void setSafetyEducation(String safetyEducation) {
- this.safetyEducation = safetyEducation;
- }
- public String getRiskAssessment() {
- return riskAssessment;
- }
- public void setRiskAssessment(String riskAssessment) {
- this.riskAssessment = riskAssessment;
- }
- public String getHazardInvestigation() {
- return hazardInvestigation;
- }
- public void setHazardInvestigation(String hazardInvestigation) {
- this.hazardInvestigation = hazardInvestigation;
- }
- public String getStandardization() {
- return standardization;
- }
- public void setStandardization(String standardization) {
- this.standardization = standardization;
- }
- public String getEmergencyPlan() {
- return emergencyPlan;
- }
- public void setEmergencyPlan(String emergencyPlan) {
- this.emergencyPlan = emergencyPlan;
- }
- public String getTechPromotion() {
- return techPromotion;
- }
- public void setTechPromotion(String techPromotion) {
- this.techPromotion = techPromotion;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- 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 + "]";
- }
- }
|