From 9a9b74378d34a8fded749aa0a748da4c8cf0df01 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 11 四月 2024 18:09:36 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckRule.java | 25 ++++++-------------------
1 files changed, 6 insertions(+), 19 deletions(-)
diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckRule.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckRule.java
index 4c7442f..f2bb4b8 100644
--- a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckRule.java
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckRule.java
@@ -24,7 +24,7 @@
/** 瑙勫垯缁嗗垯 */
@Excel(name = "瑙勫垯缁嗗垯")
- private String ruleDetail;
+ private String ruleIndex;
/** 瑙勫垯绫诲瀷 */
@Excel(name = "瑙勫垯绫诲瀷")
@@ -37,10 +37,6 @@
/** 瑙勫垯鎻忚堪 */
@Excel(name = "瑙勫垯鎻忚堪")
private String ruleDescription;
-
- /** 瀹℃牳鐘舵�� */
- @Excel(name = "瀹℃牳鐘舵��")
- private Long auditState;
/** 鍚敤鐘舵�� */
@Excel(name = "鍚敤鐘舵��")
@@ -67,14 +63,14 @@
{
return ruleName;
}
- public void setRuleDetail(String ruleDetail)
+ public void setRuleIndex(String ruleIndex)
{
- this.ruleDetail = ruleDetail;
+ this.ruleIndex = ruleIndex;
}
- public String getRuleDetail()
+ public String getRuleIndex()
{
- return ruleDetail;
+ return ruleIndex;
}
public void setRuleCategory(Long ruleCategory)
{
@@ -103,15 +99,7 @@
{
return ruleDescription;
}
- public void setAuditState(Long auditState)
- {
- this.auditState = auditState;
- }
- public Long getAuditState()
- {
- return auditState;
- }
public void setState(Long state)
{
this.state = state;
@@ -136,11 +124,10 @@
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("ruleName", getRuleName())
- .append("ruleDetail", getRuleDetail())
+ .append("ruleIndex", getRuleIndex())
.append("ruleCategory", getRuleCategory())
.append("examineCategory", getExamineCategory())
.append("ruleDescription", getRuleDescription())
- .append("auditState", getAuditState())
.append("state", getState())
.append("createTime", getCreateTime())
.append("updateTime", getUpdateTime())
--
Gitblit v1.8.0