From 5487673bc1d3c8b5efe7c91a31012df8e138a9ac Mon Sep 17 00:00:00 2001 From: zhang chengzhi <3144712872@qq.com> Date: Thu, 22 Aug 2024 14:05:19 +0800 Subject: [PATCH] 11111 --- .../src/main/java/com/muyu/etl/common/domain/EtlRule.java | 4 ---- .../java/com/muyu/etl/common/domain/req/EtlRuleUpdReq.java | 3 --- .../java/com/muyu/etl/common/domain/resp/EtlRuleResp.java | 3 --- 3 files changed, 10 deletions(-) diff --git a/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/EtlRule.java b/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/EtlRule.java index 7b1a709..bbbdafb 100644 --- a/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/EtlRule.java +++ b/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/EtlRule.java @@ -42,8 +42,6 @@ public class EtlRule extends BaseEntity { private String fullClassName ; - /** 规则说明 */ - private String explain ; /** 是否公开 0已激活 1未激活 */ private String open ; @@ -60,7 +58,6 @@ public class EtlRule extends BaseEntity { .name(etlRule.getName()) .status(etlRule.getStatus()) .type(etlRule.getType()) - .explain(etlRule.getExplain()) .remark(etlRule.getRemark()) .build(); @@ -73,7 +70,6 @@ public class EtlRule extends BaseEntity { .name(etlRule.getName()) .status(etlRule.getStatus()) .type(etlRule.getType()) - .explain(etlRule.getExplain()) .remark(etlRule.getRemark()) .build(); diff --git a/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/req/EtlRuleUpdReq.java b/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/req/EtlRuleUpdReq.java index 39f9789..de3b60f 100644 --- a/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/req/EtlRuleUpdReq.java +++ b/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/req/EtlRuleUpdReq.java @@ -30,9 +30,6 @@ public class EtlRuleUpdReq { private String fullClassName ; - /** 规则说明 */ - private String explain ; - /** 是否公开 0已激活 1未激活 */ private String open ; diff --git a/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/resp/EtlRuleResp.java b/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/resp/EtlRuleResp.java index 5512e6e..e25d548 100644 --- a/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/resp/EtlRuleResp.java +++ b/cloud-etl-common/src/main/java/com/muyu/etl/common/domain/resp/EtlRuleResp.java @@ -46,9 +46,6 @@ public class EtlRuleResp { private String fullClassName ; - /** 规则说明 */ - private String explain ; - @Schema(description = "创建人", defaultValue = "muyu", type = "String") private String createBy;