| | |
| | | @Data |
| | | public class ExamTemplateVO extends AbsVo { |
| | | |
| | | /** 模板名称 */ |
| | | private String name; |
| | | |
| | | /** 试卷科目 */ |
| | | private Integer subjectId; |
| | | |
| | | /** 考试时长(分钟) */ |
| | | private Integer suggestTime; |
| | | /** 试卷id */ |
| | | private Integer examPaperId; |
| | | |
| | | /** 单选题数量 */ |
| | | private Integer singleChoice; |
| | |
| | | /** 计算题数量 */ |
| | | private Integer calculation; |
| | | |
| | | /** 试卷总分 */ |
| | | private Integer score; |
| | | |
| | | /** 多选题扣分方式 */ |
| | | private String deductType; |
| | | |
| | | /** 创建人 */ |
| | | private Integer createUser; |
| | | |
| | | /** 创建时间 */ |
| | | private Date createTime; |
| | | |
| | | /** */ |
| | | /** 单选每题分数 */ |
| | | private BigDecimal singleScore; |
| | | |
| | | /** */ |
| | | /** 多选每题分数 */ |
| | | private BigDecimal multipleScore; |
| | | |
| | | /** */ |
| | | /** 填空每题分数 */ |
| | | private BigDecimal gapScore; |
| | | |
| | | /** */ |
| | | /** 判断每题分数 */ |
| | | private BigDecimal trueFalseScore; |
| | | |
| | | /** */ |
| | | /** 简答每题分数 */ |
| | | private BigDecimal shortAnswerScore; |
| | | |
| | | /** */ |
| | | /** 计算每题分数 */ |
| | | private BigDecimal calculationScore; |
| | | |
| | | public static ExamTemplateVO getVoByEntity(@NonNull ExamTemplate entity, ExamTemplateVO vo) { |