办学质量监测教学评价系统
shenrongliang
2025-06-13 e9abf78f6484ccfe1f1ab293b1708c06edd34179
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
package org.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
 
/**
 * 用户token使用详情对象 chat_usage_token
 *
 * @author ageerle
 * @date 2025-04-08
 */
@Data
@TableName("chat_usage_token")
public class ChatUsageToken implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id")
    private Long id;
 
    /**
     * 用户
     */
    private Long userId;
 
    /**
     * 待结算token
     */
    private Integer token;
 
    /**
     * 模型名称
     */
    private String modelName;
 
    /**
     * 累计使用token
     */
    private String totalToken;
 
 
}