From 32b4f6188f32e6c08e813efa98a25d94eacdc0c6 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 02 四月 2024 09:32:29 +0800 Subject: [PATCH] Revert "新考核" --- ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TExamineScore.java | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 104 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TExamineScore.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TExamineScore.java new file mode 100644 index 0000000..6f898e7 --- /dev/null +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TExamineScore.java @@ -0,0 +1,104 @@ +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 + + '}'; + } +} -- Gitblit v1.8.0