龚焕茏
2024-06-05 c93bdeb8ed528d015865f763dfc240cbad7aa00b
src/main/java/com/ycl/jxkg/domain/entity/ExamTemplate.java
@@ -3,8 +3,10 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.jxkg.domain.base.AbsEntity;
import io.swagger.models.auth.In;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
/**
 * 随机试卷模板表
@@ -13,22 +15,10 @@
@TableName("t_exam_template")
public class ExamTemplate extends AbsEntity {
    /**
     * 模板名
     *  试卷id
     * */
    @TableField("name")
    private String name;
    /**
     * 学科
     * */
    @TableField("subject_id")
    private Integer subjectId;
    /**
     * 建议考试时长
     * */
    @TableField("suggest_time")
    private Integer suggestTime;
    @TableField("exam_paper_id")
    private Integer examPaperId;
    /**
     * 单选题数量
@@ -66,27 +56,27 @@
    @TableField("calculation")
    private Integer calculation;
    /**
     * 总分
     * */
    @TableField("score")
    private Integer score;
    /** 单选每题分数 */
    @TableField("single_score")
    private BigDecimal singleScore;
    /**
     * 多选扣分类型
     * */
    @TableField("deduct_type")
    private String deductType;
    /** 多选每题分数 */
    @TableField("multiple_score")
    private BigDecimal multipleScore;
    /**
     * 创建时间
     * */
    @TableField("create_time")
    private Date createTime;
    /** 填空每题分数 */
    @TableField("gap_score")
    private BigDecimal gapScore;
    /**
     * 创建人
     * */
    @TableField("create_user")
    private Integer createUser;
    /** 判断每题分数 */
    @TableField("trueFalse_score")
    private BigDecimal trueFalseScore;
    /** 简答每题分数 */
    @TableField("shortAnswer_score")
    private BigDecimal shortAnswerScore;
    /** 计算每题分数 */
    @TableField("calculation_score")
    private BigDecimal calculationScore;
}