master
zhang chengzhi 2024-08-23 21:50:57 +08:00
parent 0a1f212b7c
commit b9413bdeb2
5 changed files with 17 additions and 12 deletions

View File

@ -40,11 +40,17 @@ public class RuleEngine extends BaseEntity {
private String name ; private String name ;
/** 规则类型 */ /** 规则类型 */
private String type ;
/** 引擎编码 */
private String code;
/** 规则作用域 */ /** 规则作用域 */
private String regionName; private String regionName;
/** 是否公开 0已激活 1未激活 */ /** 是否公开 0已激活 1未激活 */
private String open; private String open;
@ -60,7 +66,7 @@ public class RuleEngine extends BaseEntity {
.name(etlRule.getName()) .name(etlRule.getName())
.regionName(etlRule.getRegionName()) .regionName(etlRule.getRegionName())
.status(etlRule.getStatus()) .status(etlRule.getStatus())
.type(etlRule.getType()) .code(etlRule.getCode())
.remark(etlRule.getRemark()) .remark(etlRule.getRemark())
.build(); .build();
@ -73,7 +79,7 @@ public class RuleEngine extends BaseEntity {
.name(etlRule.getName()) .name(etlRule.getName())
.regionName(etlRule.getRegionName()) .regionName(etlRule.getRegionName())
.status(etlRule.getStatus()) .status(etlRule.getStatus())
.type(etlRule.getType()) .code(etlRule.getCode())
.remark(etlRule.getRemark()) .remark(etlRule.getRemark())
.build(); .build();

View File

@ -22,9 +22,9 @@ public class EtlRuleAddReq {
/** 规则名称 */ /** 规则名称 */
private String name ; private String name ;
/** 规则类型 */
private String type ; /** 引擎编码 */
private String code;
/** 是否公开 0已激活 1未激活 */ /** 是否公开 0已激活 1未激活 */
private String open ; private String open ;

View File

@ -20,9 +20,9 @@ import lombok.experimental.SuperBuilder;
@Tag(name = "客户端规则列表请求对象") @Tag(name = "客户端规则列表请求对象")
public class EtlRuleListReq { public class EtlRuleListReq {
/** 引擎编码 */
private String code;
/** 数据来源类型 */
private String type ;
/** 数据来源名称 */ /** 数据来源名称 */
private String name ; private String name ;

View File

@ -23,9 +23,9 @@ public class EtlRuleUpdReq {
/** 规则名称 */ /** 规则名称 */
private String name ; private String name ;
/** 规则类型 */
private String type ; /** 引擎编码 */
private String code;
/** 是否公开 0已激活 1未激活 */ /** 是否公开 0已激活 1未激活 */
private String open ; private String open ;

View File

@ -36,11 +36,10 @@ public class EtlRuleResp {
private Long id ; private Long id ;
/** 规则名称 */ /** 规则名称 */
private String name ; private String name ;
/** 规则类型 */
private String type ; /** 引擎编码 */
private String code;
/** 规则作用域 */ /** 规则作用域 */