办学质量监测教学评价系统
康鲁杰
7 天以前 3041043370ee9dbbd7917b7843f4c72c03081e5e
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
package org.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.ruoyi.core.domain.BaseEntity;
 
import java.io.Serial;
 
/**
 * 知识库附件对象 knowledge_attach
 *
 * @author ageerle
 * @date 2025-04-08
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("knowledge_attach")
public class KnowledgeAttach extends BaseEntity {
 
  @Serial
  private static final long serialVersionUID = 1L;
 
  @TableId(value = "id")
  private Long id;
 
  @TableField("kid")
  private String kid;
 
  @TableField("doc_id")
  private String docId;
 
  @TableField("doc_name")
  private String docName;
 
  @TableField("doc_type")
  private String docType;
 
  @TableField("content")
  private String content;
 
  @TableField("remark")
  private String remark;
 
  @TableField("oss_id")
  private Long ossId;
 
  @TableField("pic_status")
  private Integer picStatus;
 
  @TableField("pic_anys_status")
  private Integer picAnysStatus;
 
  @TableField("vector_status")
  private Integer vectorStatus;
}