新增指标字典功能和组件功能调整
This commit is contained in:
@@ -40,6 +40,9 @@ public class ComponentDTO implements Serializable {
|
||||
@ApiModelProperty("路径")
|
||||
private String path;
|
||||
|
||||
@ApiModelProperty("系统类型")
|
||||
private String systemType;
|
||||
|
||||
@ApiModelProperty("子级")
|
||||
List<ComponentDTO> children;
|
||||
|
||||
|
||||
@@ -53,6 +53,10 @@ public class ComponentParam {
|
||||
@ApiModelProperty("路径")
|
||||
private String path;
|
||||
|
||||
@ApiModelProperty("系统类型")
|
||||
@NotBlank(message = "系统类型不为空")
|
||||
private String systemType;
|
||||
|
||||
|
||||
/**
|
||||
* 组件更新操作实体
|
||||
|
||||
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
@@ -40,6 +40,9 @@ public class ComponentVO implements Serializable {
|
||||
@ApiModelProperty("路径")
|
||||
private String path;
|
||||
|
||||
@ApiModelProperty("系统类型")
|
||||
private String systemType;
|
||||
|
||||
@ApiModelProperty("子级")
|
||||
List<ComponentVO> children;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user