Administrator
2 days ago 49400da0804fd0ab56056fbd0a2c9ee36cd091b6
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
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_role")
public class AiProductRole extends AiBaseEntity {
    /**
     * 公司ID (UUID)
     */
    private String companyId;
 
    /**
     * 名称
     */
    private String name;
 
    /**
     * 描述
     */
    private String description;
 
    /**
     * 提问提示词提示模板
     */
    private String promptHead;
 
    /**
     * 回答提示词提示模板
     */
    private String promptTemplate;
 
    /**
     * 返回数据格式要求
     */
    private String jsonTemplate;
 
    /**
     * 小图标
     */
    private String iconImg;
 
    /**
     * 模型ID
     */
    private String modelId;
 
    /**
     * 接入点ID
     */
    private String linkId;
}