办学质量监测教学评价系统
ageerle
2025-05-26 abcde9e36e8cb6e80bc091532d6e11789b9eb085
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
90
91
92
93
94
95
96
97
98
99
package org.ruoyi.domain.vo;
 
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
import org.ruoyi.common.sensitive.annotation.Sensitive;
import org.ruoyi.common.sensitive.core.SensitiveStrategy;
import org.ruoyi.domain.ChatModel;
 
import java.io.Serial;
import java.io.Serializable;
 
 
 
 
/**
 * 聊天模型视图对象 chat_model
 *
 * @author ageerle
 * @date 2025-04-08
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = ChatModel.class)
public class ChatModelVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @ExcelProperty(value = "主键")
    private Long id;
 
    /**
     * 模型分类
     */
    @ExcelProperty(value = "模型分类")
    private String category;
 
    /**
     * 模型名称
     */
    @ExcelProperty(value = "模型名称")
    private String modelName;
 
    /**
     * 模型描述
     */
    @ExcelProperty(value = "模型描述")
    private String modelDescribe;
 
    /**
     * 模型价格
     */
    @ExcelProperty(value = "模型价格")
    private Double modelPrice;
 
    /**
     * 计费类型
     */
    @ExcelProperty(value = "计费类型")
    private String modelType;
 
    /**
     * 是否显示
     */
    @ExcelProperty(value = "是否显示")
    private String modelShow;
 
    /**
     * 系统提示词
     */
    @ExcelProperty(value = "系统提示词")
    private String systemPrompt;
 
    /**
     * 请求地址
     */
    @ExcelProperty(value = "请求地址")
    private String apiHost;
 
    /**
     * 密钥
     */
    @Sensitive(strategy = SensitiveStrategy.PHONE)
    @ExcelProperty(value = "密钥")
    private String apiKey;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
}