龚焕茏
2024-07-03 3ec909b27b3eba956aa9d00cc7a94c179bd04bbf
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.mindskip.xzs.viewmodel.student.exam;
 
 
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import java.util.List;
 
 
public class ExamPaperSubmitVM {
 
    @NotNull
    private Integer id;
 
    @NotNull
    private Integer doTime;
 
    private String score;
 
    @NotNull
    @Valid
    private List<ExamPaperSubmitItemVM> answerItems;
 
    //模板id
    private Integer templatesId;
 
    /**
     * 是否时间结束自动提交
     */
    private boolean isAutoCommit;
 
    public boolean isAutoCommit() {
        return isAutoCommit;
    }
 
    public void setAutoCommit(boolean autoCommit) {
        isAutoCommit = autoCommit;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getDoTime() {
        return doTime;
    }
 
    public void setDoTime(Integer doTime) {
        this.doTime = doTime;
    }
 
    public String getScore() {
        return score;
    }
 
    public void setScore(String score) {
        this.score = score;
    }
 
    public List<ExamPaperSubmitItemVM> getAnswerItems() {
        return answerItems;
    }
 
    public void setAnswerItems(List<ExamPaperSubmitItemVM> answerItems) {
        this.answerItems = answerItems;
    }
 
    public Integer getTemplatesId() {
        return templatesId;
    }
 
    public void setTemplatesId(Integer templatesId) {
        this.templatesId = templatesId;
    }
}