package com.gk.hotwork.Domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.util.Date; import java.util.List; @TableName("safety_inspection_item") public class SafetyInspectionItem implements Serializable { private final static long serialVersionUID = 1L; /** A级要素id element_a **/ private Long elementA; /** B级要素id element_b **/ private Long elementB; /** 标准化要求 standardization_requirements **/ private String standardizationRequirements; /** 企业达标标准 enterprise_standard **/ private String enterpriseStandard; /** 评审方法 review_method **/ private String reviewMethod; /** 否决项 veto **/ private String veto; @TableField(exist = false) /** A级要素名称 **/ private String elementAName; @TableField(exist = false) /** B级要素名称 **/ private String elementBName; @TableField(exist = false) /** 扣分项集合 **/ private List deductionList; /** 主键id id **/ @TableId(type = IdType.AUTO) private Long id; /** 有效标识 valid_flag **/ private Boolean validFlag; /** 创建时间 create_time **/ private Date createTime; /** 创建人 create_by **/ private String createBy; /** 最新更新时间 update_time **/ private Date updateTime; /** 最后更新人 update_by **/ private String updateBy; /** 主键id id **/ public Long getId() { return id; } /** 主键id id **/ public void setId(Long id) { this.id = id; } /** 有效标识 valid_flag **/ public Boolean getValidFlag() { return validFlag; } /** 有效标识 valid_flag **/ public void setValidFlag(Boolean validFlag) { this.validFlag = validFlag; } /** 创建时间 create_time **/ public Date getCreateTime() { return createTime; } /** 创建时间 create_time **/ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** 创建人 create_by **/ public String getCreateBy() { return createBy; } /** 创建人 create_by **/ public void setCreateBy(String createBy) { this.createBy = createBy == null ? null : createBy.trim(); } /** 最新更新时间 update_time **/ public Date getUpdateTime() { return updateTime; } /** 最新更新时间 update_time **/ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** 最后更新人 update_by **/ public String getUpdateBy() { return updateBy; } /** 最后更新人 update_by **/ public void setUpdateBy(String updateBy) { this.updateBy = updateBy == null ? null : updateBy.trim(); } public Long getElementA() { return elementA; } public void setElementA(Long elementA) { this.elementA = elementA; } public Long getElementB() { return elementB; } public void setElementB(Long elementB) { this.elementB = elementB; } public String getStandardizationRequirements() { return standardizationRequirements; } public void setStandardizationRequirements(String standardizationRequirements) { this.standardizationRequirements = standardizationRequirements; } public String getEnterpriseStandard() { return enterpriseStandard; } public void setEnterpriseStandard(String enterpriseStandard) { this.enterpriseStandard = enterpriseStandard; } public String getReviewMethod() { return reviewMethod; } public void setReviewMethod(String reviewMethod) { this.reviewMethod = reviewMethod; } public String getVeto() { return veto; } public void setVeto(String veto) { this.veto = veto; } public String getElementAName() { return elementAName; } public void setElementAName(String elementAName) { this.elementAName = elementAName; } public String getElementBName() { return elementBName; } public void setElementBName(String elementBName) { this.elementBName = elementBName; } public List getDeductionList() { return deductionList; } public void setDeductionList(List deductionList) { this.deductionList = deductionList; } }