hjl
2024-07-19 c832cae4de3ff53e3b80cad317fbdd84de46c02d
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
package com.ruoyi.study.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.core.web.domain.BaseModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * <p>
 * 自主游戏
 * </p>
 *
 * @author 无关风月
 * @since 2024-04-26
 */
@Data
@TableName("t_game")
public class TGame extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 所属周目
     */
    @ApiModelProperty("所属周目")
    private Integer week;
    /**
     * 学习id
     */
    private Integer studyId;
 
    /**
     * 题目数量
     */
    @ApiModelProperty("超级听力题目数量")
    private Integer count;
    /**
     * 积分逗号隔开 第一个对应入门第二个对应中级...
     */
    @ApiModelProperty("超级听力对应可获取积分数量(第一个为入门难度;第二个为中级难度;第三个为困难难度)")
    private String integral;
    /**
     * 时间逗号隔开 第一个对应入门第二个对应中级...
     */
    @ApiModelProperty("超级听力时间范围(第一个为入门难度;第二个为中级难度;第三个为困难难度)")
    private String time;
 
    /**
     * 超级听力 通关率 逗号隔开 第一个对应入门 第二个对应中级
     */
    @ApiModelProperty("超级听力 通关率 逗号隔开 第一个对应入门 第二个对应中级")
    private String rate;
 
    /**
     * 超级记忆存储该字段 答题时间
     */
    @ApiModelProperty("超级记忆 - 答题时间(第一个为入门难度;第二个为中级难度;第三个为困难难度)")
    private Integer answerTime;
    /**
     * 超级记忆存储该字段 可获积分总数
     */
    @ApiModelProperty("超级记忆 - 可获积分总数")
    private Integer answerIntegral;
    /**
     * 超级记忆游戏题目数量
     */
    @ApiModelProperty("超级记忆游戏题目数量")
    private Integer answerCount;
 
    /**
     * 超级记忆通关率
     */
    @ApiModelProperty("超级记忆通关率")
    private String answerRate;
 
}