fuliqi
2024-06-13 f70b376cd2b9a1d7f29b81b30231d30dd55351ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ycl.jxkg.domain.exam;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class PaperQuestionDTO {
    //标题(单选题、判断题)
    private String title;
    //题目类别
    private Integer questionType;
    //随机试卷题目数量
    private Integer num;
    //随机试卷题目分数
    private Integer score;
 
    //固定试卷、随序试卷题目集合
    private List<PaperQuestion> paperQuestion;
}