| | |
| | | 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; |
| | |
| | | * 用户id |
| | | */ |
| | | @ApiModelProperty(value = "用户id") |
| | | private Integer userId;/** |
| | | private Integer userId; |
| | | /** |
| | | * 剩余进度 |
| | | */ |
| | | @ApiModelProperty(value = "剩余周目") |
| | | @TableField(exist = false) |
| | | private Integer surplus; |
| | | |
| | | /** |
| | | * 所属周目 |
| | | */ |
| | | @ApiModelProperty(value = "所属周目") |
| | | private Integer week;/** |
| | | private Integer week; |
| | | /** |
| | | * 故事名称 |
| | | */ |
| | | @ApiModelProperty(value = "学习进度dayXX") |
| | | private Integer day;/** |
| | | private Integer day; |
| | | /** |
| | | * 故事名称 |
| | | */ |
| | | @ApiModelProperty(value = "总学习时长 单位小时") |
| | | private Integer totalStudy;/** |
| | | private Integer totalStudy; |
| | | /** |
| | | * 故事名称 |
| | | */ |
| | | @ApiModelProperty(value = "今日学习时长 单位小时") |
| | | private Integer todayStudy;/** |
| | | private Integer todayStudy; |
| | | /** |
| | | * 故事名称 |
| | | */ |
| | | @ApiModelProperty(value = "本周学习时长") |
| | | private Integer weekStudy;/** |
| | | private Integer weekStudy; |
| | | /** |
| | | * 故事名称 |
| | | */ |
| | | @ApiModelProperty(value = "本月学习时长") |
| | | private Integer monthStudy; |
| | | /** |
| | | * 故事名称 |
| | | * 听音选图 |
| | | */ |
| | | @ApiModelProperty(value = "听音选图学习进度") |
| | | @ApiModelProperty(value = "听音选图学习进度(100为已完成)") |
| | | private Integer listen; |
| | | /** |
| | | * 故事名称 |
| | | * 看图选音 |
| | | */ |
| | | @ApiModelProperty(value = "看图选音学习进度") |
| | | @ApiModelProperty(value = "看图选音学习进度(100为已完成)") |
| | | private Integer look; |
| | | /** |
| | | * 故事名称 |
| | | * 归纳排除 |
| | | */ |
| | | @ApiModelProperty(value = "归纳排除学习进度") |
| | | @ApiModelProperty(value = "归纳排除学习进度(100为已完成)") |
| | | private Integer induction; |
| | | /** |
| | | * 故事名称 |
| | | * 有问有答 |
| | | */ |
| | | @ApiModelProperty(value = "有问有答学习进度") |
| | | @ApiModelProperty(value = "有问有答学习进度(100为已完成)") |
| | | private Integer answer; |
| | | /** |
| | | * 故事名称 |
| | | * 音图相配 |
| | | */ |
| | | @ApiModelProperty(value = "音图相配学习进度") |
| | | @ApiModelProperty(value = "音图相配学习进度(100为已完成)") |
| | | private Integer pair; |
| | | /** |
| | | * 游戏日当前应进行的游戏难度 |
| | | */ |
| | | @ApiModelProperty(value = "游戏日应进行的游戏难度(0入门、1中级、2高级)") |
| | | private Integer gameDifficulty; |
| | | |
| | | /** |
| | | * 当前week学习进度 |
| | | */ |
| | | @ApiModelProperty(value = "当前week学习进度") |
| | | @TableField(exist = false) |
| | | private Integer computeSchedule; |
| | | |
| | | } |