11111
parent
0a1f212b7c
commit
b9413bdeb2
|
@ -40,11 +40,17 @@ public class RuleEngine extends BaseEntity {
|
|||
private String name ;
|
||||
/** 规则类型 */
|
||||
|
||||
private String type ;
|
||||
|
||||
/** 引擎编码 */
|
||||
private String code;
|
||||
|
||||
|
||||
|
||||
/** 规则作用域 */
|
||||
private String regionName;
|
||||
|
||||
|
||||
|
||||
/** 是否公开 0已激活 1未激活 */
|
||||
private String open;
|
||||
|
||||
|
@ -60,7 +66,7 @@ public class RuleEngine extends BaseEntity {
|
|||
.name(etlRule.getName())
|
||||
.regionName(etlRule.getRegionName())
|
||||
.status(etlRule.getStatus())
|
||||
.type(etlRule.getType())
|
||||
.code(etlRule.getCode())
|
||||
.remark(etlRule.getRemark())
|
||||
.build();
|
||||
|
||||
|
@ -73,7 +79,7 @@ public class RuleEngine extends BaseEntity {
|
|||
.name(etlRule.getName())
|
||||
.regionName(etlRule.getRegionName())
|
||||
.status(etlRule.getStatus())
|
||||
.type(etlRule.getType())
|
||||
.code(etlRule.getCode())
|
||||
.remark(etlRule.getRemark())
|
||||
.build();
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@ public class EtlRuleAddReq {
|
|||
|
||||
/** 规则名称 */
|
||||
private String name ;
|
||||
/** 规则类型 */
|
||||
|
||||
private String type ;
|
||||
/** 引擎编码 */
|
||||
private String code;
|
||||
|
||||
/** 是否公开 0已激活 1未激活 */
|
||||
private String open ;
|
||||
|
|
|
@ -20,9 +20,9 @@ import lombok.experimental.SuperBuilder;
|
|||
@Tag(name = "客户端规则列表请求对象")
|
||||
public class EtlRuleListReq {
|
||||
|
||||
/** 引擎编码 */
|
||||
private String code;
|
||||
|
||||
/** 数据来源类型 */
|
||||
private String type ;
|
||||
/** 数据来源名称 */
|
||||
private String name ;
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@ public class EtlRuleUpdReq {
|
|||
|
||||
/** 规则名称 */
|
||||
private String name ;
|
||||
/** 规则类型 */
|
||||
|
||||
private String type ;
|
||||
/** 引擎编码 */
|
||||
private String code;
|
||||
|
||||
/** 是否公开 0已激活 1未激活 */
|
||||
private String open ;
|
||||
|
|
|
@ -36,11 +36,10 @@ public class EtlRuleResp {
|
|||
private Long id ;
|
||||
|
||||
/** 规则名称 */
|
||||
|
||||
private String name ;
|
||||
/** 规则类型 */
|
||||
|
||||
private String type ;
|
||||
/** 引擎编码 */
|
||||
private String code;
|
||||
|
||||
|
||||
/** 规则作用域 */
|
||||
|
|
Loading…
Reference in New Issue