| | |
| | | package com.ruoyi.study.vo; |
| | | |
| | | import com.ruoyi.study.domain.TSubject; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "自主游戏VO") |
| | |
| | | private String time; |
| | | @ApiModelProperty(value = "超级听力 积分逗号隔开 第一个对应入门第二个对应中级...") |
| | | private String integral; |
| | | @ApiModelProperty(value = "超级听力 通关率逗号隔开 第一个对应入门第二个对应中级...") |
| | | private String rate; |
| | | @ApiModelProperty(value = "超级记忆通关率") |
| | | private String answerRate; |
| | | @ApiModelProperty(value = "超级听力 题目数量") |
| | | private Integer count; |
| | | @ApiModelProperty(value = "超级记忆 答题时间") |
| | |
| | | private Integer answerIntegral; |
| | | @ApiModelProperty(value = "超级记忆游戏题目数量") |
| | | private Integer answerCount; |
| | | @ApiModelProperty(value = "超级记忆游戏时间") |
| | | private List<TSubject> subjects; |
| | | } |