package com.ycl.jxkg.domain.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.ycl.jxkg.domain.base.AbsEntity;
|
import lombok.Data;
|
|
import java.util.Date;
|
/**
|
* 随机试卷模板表
|
* */
|
@Data
|
@TableName("t_exam_template")
|
public class ExamTemplate extends AbsEntity {
|
/**
|
* 模板名
|
* */
|
@TableField("name")
|
private String name;
|
|
/**
|
* 学科
|
* */
|
@TableField("subject_id")
|
private Integer subjectId;
|
|
/**
|
* 建议考试时长
|
* */
|
@TableField("suggest_time")
|
private Integer suggestTime;
|
|
/**
|
* 单选题数量
|
* */
|
@TableField("single_choice")
|
private Integer singleChoice;
|
|
/**
|
* 多选题数量
|
* */
|
@TableField("multiple_choice")
|
private Integer multipleChoice;
|
|
/**
|
* 填空题数量
|
* */
|
@TableField("gap_filling")
|
private Integer gapFilling;
|
|
/**
|
* 判断题数量
|
* */
|
@TableField("true_false")
|
private Integer trueFalse;
|
|
/**
|
* 简答题数量
|
* */
|
@TableField("short_answer")
|
private Integer shortAnswer;
|
|
/**
|
* 计算题数量
|
* */
|
@TableField("calculation")
|
private Integer calculation;
|
|
/**
|
* 总分
|
* */
|
@TableField("score")
|
private Integer score;
|
|
/**
|
* 多选扣分类型
|
* */
|
@TableField("deduct_type")
|
private String deductType;
|
|
/**
|
* 创建时间
|
* */
|
@TableField("create_time")
|
private Date createTime;
|
|
/**
|
* 创建人
|
* */
|
@TableField("create_user")
|
private Integer createUser;
|
}
|