| | |
| | | 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; |
| | | |
| | | /** |
| | | * 随机试卷模板 |
| | |
| | | |
| | | 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") |
| | | /** 单选题数量 */ |
| | |
| | | /** 简答每题分数 */ |
| | | private BigDecimal shortAnswerScore; |
| | | |
| | | @TableField("calculation__score") |
| | | @TableField("calculation_score") |
| | | /** 计算每题分数 */ |
| | | private BigDecimal calculationScore; |
| | | |
| | | @TableField("create_user") |
| | | /** */ |
| | | private Integer createUser; |
| | | |
| | | |
| | | } |