package com.ycl.platform.domain.entity; import annotation.Excel; import com.ycl.system.entity.BaseEntity; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; import java.math.BigDecimal; /** * 考核计分对象 t_examine_score * * @author ruoyi * @date 2024-03-13 */ public class TExamineScore extends BaseEntity { private static final long serialVersionUID = 1L; /** $column.columnComment */ private Long id; /** 分值 */ @Excel(name = "分值") private BigDecimal score; /** 单位id */ @Excel(name = "单位id") private Long unitId; /** 考核id */ @Excel(name = "考核id") private Long examineId; /** 操作类型 1/2 系统打分/人工打分 */ @Excel(name = "操作类型 1/2 系统打分/人工打分") private Long operateCategory; /** 积分类型 */ @Excel(name = "积分类型") private Long scoreCategory; public void setId(Long id) { this.id = id; } public Long getId() { return id; } public void setScore(BigDecimal score) { this.score = score; } public BigDecimal getScore() { return score; } public void setUnitId(Long unitId) { this.unitId = unitId; } public Long getUnitId() { return unitId; } public void setExamineId(Long examineId) { this.examineId = examineId; } public Long getExamineId() { return examineId; } public void setOperateCategory(Long operateCategory) { this.operateCategory = operateCategory; } public Long getOperateCategory() { return operateCategory; } public void setScoreCategory(Long scoreCategory) { this.scoreCategory = scoreCategory; } public Long getScoreCategory() { return scoreCategory; } @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) .append("id", getId()) .append("score", getScore()) .append("unitId", getUnitId()) .append("examineId", getExamineId()) .append("operateCategory", getOperateCategory()) .append("scoreCategory", getScoreCategory()) .append("createTime", getCreateTime()) .append("createBy", getCreateBy()) .toString(); } }