fuliqi
2024-10-17 8546b3d285af4235a0ef615a0c6e89486ae2c806
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
}