package com.ycl.jxkg.domain.exam;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ycl.jxkg.domain.base.AbsEntity;
|
import com.ycl.jxkg.domain.entity.ExamTemplate;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
public class ExamPaperTempDTO extends AbsEntity {
|
/**
|
* 试卷名称
|
*/
|
private String name;
|
|
/**
|
* 学科
|
*/
|
private Integer subjectId;
|
|
/**
|
* 试卷类型( 1固定试卷 2.随即试卷 3.随序试卷)
|
*/
|
private Integer paperType;
|
|
/**
|
* 试卷总分
|
*/
|
private BigDecimal score;
|
|
/**
|
* 题目数量
|
*/
|
private Integer questionCount;
|
|
/**
|
* 建议时长(分钟)
|
*/
|
private Integer suggestTime;
|
|
private Integer createUser;
|
|
private Date createTime;
|
|
/**
|
* 可见性,公开/私有
|
* */
|
private String visibility;
|
|
/**
|
* 多选扣分类型
|
* */
|
private Integer deductType;
|
|
/**
|
* 多选评分分数
|
* */
|
private BigDecimal deductTypeScore;
|
|
private ExamTemplate examTemplate;
|
}
|