| | |
| | | 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 |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | @TableId(value = "id", type = IdType.NONE) |
| | | private Long id; |
| | | /** |
| | | * 用户id |
| | | */ |
| | | @ApiModelProperty(value = "用户id") |
| | | private Integer userId;/** |
| | | private Integer userId; |
| | | /** |
| | | * /** |
| | | * 所属周目 |
| | | */ |
| | | @ApiModelProperty(value = "所属周目") |
| | | private Integer week;/** |
| | | private Integer week; |
| | | /** |
| | | * 学习进度dayXX |
| | | */ |
| | | @ApiModelProperty(value = "学习进度dayXX ") |
| | | private Integer day;/** |
| | | private Integer day; |
| | | /** |
| | | * 上次回答到的题组id |
| | | */ |
| | | @ApiModelProperty(value = "上次回答到的题组id") |
| | | private Integer beforeSubject;/** |
| | | @ApiModelProperty(value = "上次回答到的题组id(, 拼接)") |
| | | private String beforeSubject; |
| | | /** |
| | | * 类型1听音选图2看图选音3归纳排除4有问有答5音图相配 |
| | | */ |
| | | @ApiModelProperty(value = "类型1听音选图2看图选音3归纳排除4有问有答5音图相配") |
| | | @ApiModelProperty(value = "类型1:听音选图,2:看图选音,3:归纳排除,4:有问有答,5:音图相配") |
| | | private Integer type; |
| | | /** |
| | | * 已回答正确的题目id 多个逗号隔开 |
| | |
| | | @ApiModelProperty(value = "已回答正确的题目id 多个逗号隔开") |
| | | private String completeSubject; |
| | | |
| | | /** |
| | | * 答题次数 |
| | | */ |
| | | @ApiModelProperty(value = "答题次数") |
| | | @TableField("answerNumber") |
| | | private Integer answerNumber; |
| | | |
| | | /** |
| | | * 答题正确次数 |
| | | */ |
| | | @ApiModelProperty(value = "答题正确次数") |
| | | @TableField("correctNumber") |
| | | private Integer correctNumber; |
| | | |
| | | /** |
| | | * 页码 |
| | | */ |
| | | @ApiModelProperty(value = "页码") |
| | | @TableField("schedule") |
| | | private Integer schedule; |
| | | |
| | | } |