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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.ruoyi.study.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.core.web.domain.BaseModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * <p>
 * 用户学习记录
 * </p>
 *
 * @author 无关风月
 * @since 2024-04-26
 */
@Data
@TableName("t_user_study")
@ApiModel(value = "用户学习记录")
public class TUserStudy extends BaseModel {
    private static final long serialVersionUID = 1L;
    /**
     * 主键id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id")
    private Integer userId;
    /**
     * 剩余进度
     */
    @ApiModelProperty(value = "剩余周目")
    @TableField(exist = false)
    private Integer surplus;
 
    /**
     * 所属周目
     */
    @ApiModelProperty(value = "所属周目")
    private Integer week;
    /**
     * 故事名称
     */
    @ApiModelProperty(value = "学习进度dayXX")
    private Integer day;
    /**
     * 故事名称
     */
    @ApiModelProperty(value = "总学习时长 单位小时")
    private Integer totalStudy;
    /**
     * 故事名称
     */
    @ApiModelProperty(value = "今日学习时长 单位小时")
    private Integer todayStudy;
    /**
     * 故事名称
     */
    @ApiModelProperty(value = "本周学习时长")
    private Integer weekStudy;
    /**
     * 故事名称
     */
    @ApiModelProperty(value = "本月学习时长")
    private Integer monthStudy;
    /**
     * 听音选图
     */
    @ApiModelProperty(value = "听音选图学习进度(100为已完成)")
    private Integer listen;
    /**
     * 看图选音
     */
    @ApiModelProperty(value = "看图选音学习进度(100为已完成)")
    private Integer look;
    /**
     * 归纳排除
     */
    @ApiModelProperty(value = "归纳排除学习进度(100为已完成)")
    private Integer induction;
    /**
     * 有问有答
     */
    @ApiModelProperty(value = "有问有答学习进度(100为已完成)")
    private Integer answer;
    /**
     * 音图相配
     */
    @ApiModelProperty(value = "音图相配学习进度(100为已完成)")
    private Integer pair;
    /**
     * 游戏日当前应进行的游戏难度
     */
    @ApiModelProperty(value = "游戏日应进行的游戏难度(0入门、1中级、2高级)")
    private Integer gameDifficulty;
 
    /**
     * 当前week学习进度
     */
    @ApiModelProperty(value = "当前week学习进度")
    @TableField(exist = false)
    private Integer computeSchedule;
 
}