办学质量监测教学评价系统
ageer
2025-03-31 ae141a6591e49c69bce849e760bf11a5216d2f50
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
package org.ruoyi.system.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.system.domain.SysModel;
 
import java.io.Serial;
import java.io.Serializable;
 
 
/**
 * 系统模型视图对象 sys_model
 *
 * @author Lion Li
 * @date 2024-04-04
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = SysModel.class)
public class SysModelVo 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;
 
    /**
     * 是否显示
     */
    private String modelShow;
 
 
    /**
     * 系统提示词
     */
    private String systemPrompt;
 
    /**
     * 请求地址
     */
    private String apiHost;
 
    /**
     * 模型名称
     */
    @Sensitive(strategy = SensitiveStrategy.ID_CARD)
    private String apiKey;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
}