调整项目节点树动态展示
This commit is contained in:
@@ -37,6 +37,10 @@ public class DimensionTemplate implements Serializable {
|
||||
@TableField("templateName")
|
||||
private String templateName;
|
||||
|
||||
@Schema(description = "数据维度类型:1、插入维度 2、查询维度")
|
||||
@TableField("templateType")
|
||||
private int templateType;
|
||||
|
||||
@Schema(description = "模板描述")
|
||||
@TableField("description")
|
||||
private String description;
|
||||
|
||||
@@ -37,7 +37,7 @@ public class DimensionTemplateHierarchy implements Serializable {
|
||||
@TableField("templateId")
|
||||
private Long templateId;
|
||||
|
||||
@Schema(description = "显示名称")
|
||||
@Schema(description = "显示名称:tag1,tag2,tag3...tag10")
|
||||
@TableField("displayName")
|
||||
private String displayName;
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.sdm.data.model.req.dimensionTemplate;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Data;
|
||||
@@ -17,6 +18,9 @@ public class DimensionTemplateReq {
|
||||
@Schema(description = "模板名称", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
private String templateName;
|
||||
|
||||
@Schema(description = "数据维度类型:1、插入维度 2、查询维度")
|
||||
private int templateType;
|
||||
|
||||
@Schema(description = "模板描述")
|
||||
private String description;
|
||||
}
|
||||
Reference in New Issue
Block a user