From 01ac104c7aca0d85521ccd364df2861974e13542 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期三, 13 三月 2024 14:28:16 +0800
Subject: [PATCH] 权限屏蔽
---
ycl-pojo/src/main/java/com/ycl/platform/domain/form/CheckTemplateForm.java | 32 ++------------------------------
1 files changed, 2 insertions(+), 30 deletions(-)
diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/form/CheckTemplateForm.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/form/CheckTemplateForm.java
index 14772b5..d3b4890 100644
--- a/ycl-pojo/src/main/java/com/ycl/platform/domain/form/CheckTemplateForm.java
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/form/CheckTemplateForm.java
@@ -1,5 +1,6 @@
package com.ycl.platform.domain.form;
+import com.ycl.platform.domain.vo.RuleItemVO;
import com.ycl.system.domain.group.Update;
import com.ycl.system.domain.group.Add;
import com.ycl.platform.base.AbsForm;
@@ -48,7 +49,7 @@
@NotEmpty(message = "鑰冩牳瑙勫垯涓嶈兘涓虹┖")
@ApiModelProperty("鑰冩牳瑙勫垯")
- private List<RuleItem> ruleList;
+ private List<RuleItemVO> ruleFormList;
public static CheckTemplate getEntityByForm(@NonNull CheckTemplateForm form, CheckTemplate entity) {
if(entity == null) {
@@ -56,35 +57,6 @@
}
BeanUtils.copyProperties(form, entity);
return entity;
- }
-
- public class RuleItem {
-
- /**
- * 瑙勫垯
- */
- private Integer ruleId;
-
- /**
- * 鏉冮噸
- */
- private BigDecimal weight;
-
- public Integer getRuleId() {
- return ruleId;
- }
-
- public void setRuleId(Integer ruleId) {
- this.ruleId = ruleId;
- }
-
- public BigDecimal getWeight() {
- return weight;
- }
-
- public void setWeight(BigDecimal weight) {
- this.weight = weight;
- }
}
}
--
Gitblit v1.8.0