办学质量监测教学评价系统
ageer
2025-03-02 1385b165c9a62a486b4494ebb11320d3c1117a5e
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package org.ruoyi.knowledge.domain;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 知识片段对象 knowledge_fragment
 *
 * @author Lion Li
 * @date 2024-10-21
 */
@Data
@TableName("knowledge_fragment")
public class KnowledgeFragment implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id")
    private Long id;
 
    /**
     * 知识库ID
     */
    private String kid;
 
    /**
     * 文档ID
     */
    private String docId;
 
    /**
     * 知识片段ID
     */
    private String fid;
 
    /**
     * 片段索引下标
     */
    private Integer idx;
 
    /**
     * 文档内容
     */
    private String content;
 
    /**
     * 创建者
     */
    private String createBy;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
}