fuliqi
2024-03-26 2090500dab57f9c898b3d8f0d580046d311fd0eb
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TExamineScore.java
@@ -32,15 +32,28 @@
    @Excel(name = "考核id")
    private Long examineId;
    /** 操作类型 1/2 系统打分/人工打分 */
    @Excel(name = "操作类型 1/2 系统打分/人工打分")
    private Long operateCategory;
    @Excel(name = "考核类型")
    private Long examineCategory;
    @Excel(name = "规则类型")
    private Long ruleCategory;
    /** 积分类型 */
    @Excel(name = "积分类型")
    private Long scoreCategory;
    public Long getRuleCategory() {
        return ruleCategory;
    }
    public void setId(Long id)
    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;
    }
@@ -76,36 +89,16 @@
    {
        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();
        return "TExamineScore{" +
                "id=" + id +
                ", score=" + score +
                ", unitId=" + unitId +
                ", examineId=" + examineId +
                ", examineCategory=" + examineCategory +
                ", ruleCategory=" + ruleCategory +
                '}';
    }
}