package com.ruoyi.study.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
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;
|
|
/**
|
* <p>
|
* 自主游戏
|
* </p>
|
*
|
* @author 无关风月
|
* @since 2024-04-26
|
*/
|
@Data
|
@TableName("t_game")
|
public class TGame extends BaseModel {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 所属周目
|
*/
|
@ApiModelProperty("所属周目")
|
private Integer week;
|
/**
|
* 学习id
|
*/
|
private Integer studyId;
|
|
/**
|
* 题目数量
|
*/
|
@ApiModelProperty("超级听力题目数量")
|
private Integer count;
|
/**
|
* 积分逗号隔开 第一个对应入门第二个对应中级...
|
*/
|
@ApiModelProperty("超级听力对应可获取积分数量(第一个为入门难度;第二个为中级难度;第三个为困难难度)")
|
private String integral;
|
/**
|
* 时间逗号隔开 第一个对应入门第二个对应中级...
|
*/
|
@ApiModelProperty("超级听力时间范围(第一个为入门难度;第二个为中级难度;第三个为困难难度)")
|
private String time;
|
|
/**
|
* 超级听力 通关率 逗号隔开 第一个对应入门 第二个对应中级
|
*/
|
@ApiModelProperty("超级听力 通关率 逗号隔开 第一个对应入门 第二个对应中级")
|
private String rate;
|
|
/**
|
* 超级记忆存储该字段 答题时间
|
*/
|
@ApiModelProperty("超级记忆 - 答题时间(第一个为入门难度;第二个为中级难度;第三个为困难难度)")
|
private Integer answerTime;
|
/**
|
* 超级记忆存储该字段 可获积分总数
|
*/
|
@ApiModelProperty("超级记忆 - 可获积分总数")
|
private Integer answerIntegral;
|
/**
|
* 超级记忆游戏题目数量
|
*/
|
@ApiModelProperty("超级记忆游戏题目数量")
|
private Integer answerCount;
|
|
/**
|
* 超级记忆通关率
|
*/
|
@ApiModelProperty("超级记忆通关率")
|
private String answerRate;
|
|
}
|