From 2090500dab57f9c898b3d8f0d580046d311fd0eb Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 26 三月 2024 15:21:24 +0800 Subject: [PATCH] 考核模块需求修改 --- ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TExamineScore.java | 63 ++++++++++++++----------------- 1 files changed, 28 insertions(+), 35 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 index 9440673..6f898e7 100644 --- 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 @@ -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 + + '}'; } } -- Gitblit v1.8.0