DYL
2025-01-10 5ac72fbfc76d24974a620d0b0e17abd09138f43a
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
package com.zhitan.knowledgeBase.domain.entity;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 知识库附件表(KnowledgeBaseFile)实体类
 *
 * @author makejava
 * @since 2025-01-10 14:57:12
 */
@Data
public class KnowledgeBaseFile implements Serializable {
    private static final long serialVersionUID = 998732434860554353L;
    /**
     * id
     */
    private Long id;
    /**
     * 知识库id
     */
    private Long knowledgeBaseId;
    /**
     * 文件地址
     */
    private String url;
}