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 questions; }