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