xiangpei
2024-06-14 9e3d47a16aa7b4ed4edbcc1a09ac5949aa8f8ff6
src/main/java/com/ycl/jxkg/domain/entity/ExamTemplate.java
@@ -3,9 +3,11 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.jxkg.domain.base.AbsEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
/**
 * 随机试卷模板
@@ -19,29 +21,9 @@
    private static final long serialVersionUID = 1L;
    @TableField("name")
    /** 模板名 */
    private String name;
    @TableField("subject_id")
    /** 学科id */
    private Integer subjectId;
    @TableField("score")
    /** 总分 */
    private Integer score;
    @TableField("visibility")
    /** 是否私有 */
    private String visibility;
    @TableField("suggest_time")
    /** 建议时间 */
    private Integer suggestTime;
    @TableField("deduct_type")
    /** 多选扣分类型 */
    private Integer deductType;
    @TableField("exam_paper_id")
    /** paperId */
    private Integer examPaperId;
    @TableField("single_choice")
    /** 单选题数量 */
@@ -87,13 +69,8 @@
    /** 简答每题分数 */
    private BigDecimal shortAnswerScore;
    @TableField("calculation__score")
    @TableField("calculation_score")
    /** 计算每题分数 */
    private BigDecimal calculationScore;
    @TableField("create_user")
    /**  */
    private Integer createUser;
}