办学质量监测教学评价系统
ageerle
2025-05-09 1bddf5df3b77e505a9f41a1efa7b081cde32f931
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
81
82
83
84
85
86
87
88
89
package org.ruoyi.domain;
 
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.ruoyi.core.domain.BaseEntity;
 
import java.io.Serial;
 
/**
 * 聊天模型对象 chat_model
 *
 * @author ageerle
 * @date 2025-04-08
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("chat_model")
public class ChatModel extends BaseEntity {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id")
    private Long id;
 
    /**
     * 模型分类
     */
    private String category;
 
    /**
     * 模型名称
     */
    private String modelName;
 
    /**
     * 模型描述
     */
    private String modelDescribe;
 
    /**
     * 模型价格
     */
    private Long modelPrice;
 
    /**
     * 计费类型
     */
    private String modelType;
 
    /**
     * 是否显示
     */
    private String modelShow;
 
    /**
     * 系统提示词
     */
    private String systemPrompt;
 
    /**
     * 请求地址
     */
    private String apiHost;
 
    /**
     * 请求地址后缀 - 兼容多平台
     */
    @ExcelProperty(value = "请求地址后缀")
    private String apiUrl;
 
    /**
     * 密钥
     */
    private String apiKey;
 
    /**
     * 备注
     */
    private String remark;
 
 
}