From 393df8c2013b34fdd60bff312815d6a05d3e0ecc Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 02 四月 2024 10:33:11 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
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