| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 所属周目 |
| | | */ |
| | | @ApiModelProperty("所属周目") |
| | | private Integer week; |
| | | /** |
| | | * 学习id |
| | |
| | | /** |
| | | * 题目数量 |
| | | */ |
| | | @ApiModelProperty("题目数量") |
| | | private Integer count; |
| | | /** |
| | | * 积分逗号隔开 第一个对应入门第二个对应中级... |
| | | */ |
| | | @ApiModelProperty("对应可获取积分数量(第一个为入门难度;第二个为中级难度;第三个为困难难度)") |
| | | private String integral; |
| | | /** |
| | | * 时间逗号隔开 第一个对应入门第二个对应中级... |
| | | */ |
| | | @ApiModelProperty("时间范围(第一个为入门难度;第二个为中级难度;第三个为困难难度)") |
| | | private String time; |
| | | |
| | | /** |
| | | * 超级记忆存储该字段 答题时间 |
| | | */ |
| | | @ApiModelProperty("超级记忆 - 答题时间(第一个为入门难度;第二个为中级难度;第三个为困难难度)") |
| | | private Integer answerTime; |
| | | /** |
| | | * 超级记忆存储该字段 可获积分总数 |
| | | */ |
| | | @ApiModelProperty("超级记忆 - 可获积分总数") |
| | | private Integer answerIntegral; |
| | | /** |
| | | * 超级记忆游戏题目数量 |
| | | */ |
| | | @ApiModelProperty("超级记忆游戏题目数量") |
| | | private Integer answerCount; |
| | | |
| | | |
| | | |
| | | } |