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;
|
|
@Excel(name = "考核类型")
|
private Long examineCategory;
|
@Excel(name = "规则类型")
|
private Long ruleCategory;
|
|
public Long getRuleCategory() {
|
return ruleCategory;
|
}
|
|
public void setRuleCategory(Long ruleCategory) {
|
this.ruleCategory = ruleCategory;
|
}
|
|
public Long getExamineCategory() {
|
return examineCategory;
|
}
|
|
public void setExamineCategory(Long examineCategory) {
|
this.examineCategory = examineCategory;
|
}
|
|
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;
|
}
|
|
@Override
|
public String toString() {
|
return "TExamineScore{" +
|
"id=" + id +
|
", score=" + score +
|
", unitId=" + unitId +
|
", examineId=" + examineId +
|
", examineCategory=" + examineCategory +
|
", ruleCategory=" + ruleCategory +
|
'}';
|
}
|
}
|