xiangpei
2024-06-28 02d8e9c93d128ad87bd891cc45d652727862df5f
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
package com.ycl.jxkg.domain.vo;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 考试试卷数据
 *
 * @author:xp
 * @date:2024/6/26 17:35
 */
@Data
public class StartExamVO {
 
    private Integer id;
 
    /** 考试时间 */
    private Integer doTime;
 
    /** 考试名称 */
    private String examName;
 
    /** 考试时间 */
    private Integer suggestTime;
 
    /** 小标题集合 */
    private List<PaperFixQuestionVO> titleList;
 
}