新增指标字典功能和组件功能调整

This commit is contained in:
2023-05-30 13:43:06 +08:00
parent a549c461f9
commit 8d4228d0eb
19 changed files with 874 additions and 22 deletions

View File

@@ -40,6 +40,9 @@ public class ComponentDTO implements Serializable {
@ApiModelProperty("路径")
private String path;
@ApiModelProperty("系统类型")
private String systemType;
@ApiModelProperty("子级")
List<ComponentDTO> children;

View File

@@ -53,6 +53,10 @@ public class ComponentParam {
@ApiModelProperty("路径")
private String path;
@ApiModelProperty("系统类型")
@NotBlank(message = "系统类型不为空")
private String systemType;
/**
* 组件更新操作实体

View File

@@ -8,7 +8,7 @@ import lombok.EqualsAndHashCode;
/**
*
* @author hongawen
* @author xuyang
* @since 2021-12-13
*/
@Data
@@ -68,4 +68,9 @@ public class Component extends BaseEntity {
*/
private Integer state;
/**
* 系统类型
*/
private String systemType;
}

View File

@@ -40,6 +40,9 @@ public class ComponentVO implements Serializable {
@ApiModelProperty("路径")
private String path;
@ApiModelProperty("系统类型")
private String systemType;
@ApiModelProperty("子级")
List<ComponentVO> children;