houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.iailab.module.knowledge.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年12月26日 09:09:00
 */
@Data
@Schema(name = "知识库目录")
public class KnowledgePathDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(name = "id")
    private String id;
 
    @Schema(name = "级联value")
    private String value;
 
    @Schema(name = "标签")
    private String label;
 
    @Schema(name = "父ID")
    private String parentId;
 
    @Schema(name = "children")
    private List<KnowledgePathDTO> children;
}