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_study_answer")
|
public class TStudyAnswer extends BaseModel {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 周目x
|
*/
|
@ApiModelProperty("所属周目")
|
private Integer week;
|
/**
|
* Dayx
|
*/
|
@ApiModelProperty("所属day")
|
private Integer day;
|
/**
|
* 问题题目id
|
*/
|
private Integer subject;
|
/**
|
* 回答题目id
|
*/
|
private Integer answerSubject;
|
|
/**
|
* 问题题目是否为答案图片 0否1是 为0 那么回答题目是答案图片
|
*/
|
@ApiModelProperty("问题题目是否为答案图片 0否1是 为0 那么回答题目是答案图片")
|
private Integer isAnswer;
|
/**
|
* 完成答题可获积分
|
*/
|
@ApiModelProperty("完成答题可获积分")
|
private Integer integral;
|
/**
|
* 学习id
|
*/
|
@ApiModelProperty("学习id")
|
private Integer studyId;
|
/**
|
* 非会员是否查看 0否1是
|
*/
|
@ApiModelProperty("非会员是否查看 0否1是")
|
private Integer isVip;
|
|
}
|