master
zhang chengzhi 2024-08-22 14:05:19 +08:00
parent f9395ea32f
commit 5487673bc1
3 changed files with 0 additions and 10 deletions

View File

@ -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();

View File

@ -30,9 +30,6 @@ public class EtlRuleUpdReq {
private String fullClassName ;
/** 规则说明 */
private String explain ;
/** 是否公开 0已激活 1未激活 */
private String open ;

View File

@ -46,9 +46,6 @@ public class EtlRuleResp {
private String fullClassName ;
/** 规则说明 */
private String explain ;
@Schema(description = "创建人", defaultValue = "muyu", type = "String")
private String createBy;