无关风月
2024-07-10 6b96492c540e24cc29d55573c5816df808279825
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
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 io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * <p>
 * 学习类型 听 听音选图
 * </p>
 *
 * @author 无关风月
 * @since 2024-04-26
 */
@Data
@TableName("t_user_study_record")
public class TUserStudyRecord {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @TableId(value = "id", type = IdType.NONE)
    private Long id;
 
    /**
     * 季度
     */
    @ApiModelProperty("季度")
    @TableField("user_id")
    private Integer userId;
 
    /**
     * 季度
     */
    @ApiModelProperty("季度")
    @TableField("quarter")
    private Integer quarter;
 
    /**
     * 周目x
     */
    @ApiModelProperty("周目")
    @TableField("week")
    private Integer week;
 
    /**
     * day
     */
    @ApiModelProperty("所属day")
    @TableField("day")
    private Integer day;
 
    /**
     * 题目
     */
    @ApiModelProperty("获取积分数量")
    @TableField("obtained_integral")
    private Integer obtainedIntegral;
 
    /**
     * 0:day 1-5学习;1:自主故事1
     */
    @ApiModelProperty("0:day 1-5学习;1:自主故事1")
    @TableField("type")
    private Integer type;
 
    /**
     * 题目类型(1:听音选图;2:看图选音;3:归纳排除;4:有问有答;5:音图相配)
     */
    @ApiModelProperty("题目类型(1:听音选图;2:看图选音;3:归纳排除;4:有问有答;5:音图相配)")
    @TableField("study_type")
    private Integer studyType;
 
    /**
     * 自主故事id
     */
    @ApiModelProperty("自主故事id")
    @TableField("story_id")
    private Integer storyId;
 
}