fuliqi
2024-06-12 9b8264bd45b103476e2f9d662aa8c324a41f3357
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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;
}