package com.ycl.jxkg.domain.vo.admin.exam;
|
|
|
|
import com.ycl.jxkg.domain.exam.PaperFixQuestionDTO;
|
import com.ycl.jxkg.domain.exam.PaperQuestionSettingDTO;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
@Data
|
public class ExamPaperEditRequestVO {
|
|
private Integer id;
|
/** 科目 */
|
private Integer subjectId;
|
/** 试卷类型 */
|
private Integer paperType;
|
/** 试卷名 */
|
private String name;
|
/** 建议时间 */
|
private Integer suggestTime;
|
private String visibility;
|
private Integer deductType;
|
private BigDecimal deductTypeScore;
|
private Integer num;
|
private BigDecimal score;
|
/**
|
* 题目配置
|
* */
|
private List<PaperQuestionSettingDTO> questionSetting;
|
|
/**
|
* 题目信息
|
* */
|
private List<PaperFixQuestionDTO> questionTitleList;
|
}
|