master
zhang chengzhi 2024-08-23 11:06:02 +08:00
parent a3e6f30b70
commit 2533bb363f
3 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package com.muyu.rule.common.domain.resp;
package com.muyu.rule.common.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import io.swagger.v3.oas.annotations.tags.Tag;

View File

@ -26,7 +26,7 @@ public class EtlRuleListReq {
/** 数据来源名称 */
private String name ;
/** 是否公开 0已激活 1未激活 */
/** 是否激活公开 Y已激活 N未激活 */
private String open ;

View File

@ -46,6 +46,11 @@ public class EtlRuleResp {
/** 规则作用域 */
private String regionName;
/** 状态 0正常 1停用 */
private String status ;
/** 是否激活 */
private String open ;
@Schema(description = "创建人", defaultValue = "muyu", type = "String")
private String createBy;