Administrator
2025-08-25 b127a167b2e8051576872c14c82e9517a397da60
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package cc.mrbird.febs.ai.entity;
 
import cc.mrbird.febs.common.entity.AiBaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * AI产品表
 *
 * @author yourname
 * @date 2025-07-29
 */
@Data
@TableName("ai_product")
public class AiProduct extends AiBaseEntity {
    /**
     * 公司ID (UUID)
     */
    private String companyId;
 
    /**
     * 编码
     */
    private String code;
 
    /**
     * 名称
     */
    private String name;
 
    /**
     * 背景图片
     */
    private String backImg;
 
    /**
     * 小图标
     */
    private String iconImg;
 
    /**
     * 排序
     */
    private Integer sort;
 
    /**
     * 状态 0-禁用 1-启用 2-已删除
     */
    private Integer state;
 
    /**
     * 是否推荐到首页 1-推荐 0-不推荐
     */
    private Integer hotState;
 
    /**
     * AI产品类别ID (UUID)
     */
    private String productCategoryId;
 
    /**
     * 场景(可以根据场景生成prompt提示词)
     */
    private String scene;
 
    /**
     * 目标
     */
    private String target;
 
    /**
     * 描述
     */
    private String description;
 
    /**
     * 每次出题数量
     */
    private Integer questionCount;
}