liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
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
package jnpf.tmsEntity.exam;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class TmsOnlineExamPaperVO {
 
    private String examId;
    private String paperId;
    private String paperName;
    private BigDecimal totalScore;
    private BigDecimal passScore;
    private Integer durationMin;
    /** 开考时间 yyyy-MM-dd HH:mm:ss,倒计时按此续算 */
    private String startTime;
    /** 剩余秒数,null=不限时 */
    private Integer remainSeconds;
 
    @Schema(description = "开考时发现已超时并已自动交卷")
    private Boolean autoSubmitted;
 
    @Schema(description = "考试序号,1=首考")
    private Integer attemptNo;
 
    @Schema(description = "考试类型文案:首考/补考")
    private String attemptLabel;
 
    private List<TmsOnlineExamQuestionVO> questions;
}