1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ycl.jxkg.domain.exam;
|
| import lombok.Data;
|
| import java.math.BigDecimal;
| import java.util.List;
|
| @Data
| public class PaperQuestionSettingDTO {
| //标题(单选题(20分)...)
| private String title;
|
| //题目类别
| private Integer questionType;
| //随机试卷题目数量
| private Integer num;
| //随机试卷题目分数
| private BigDecimal score;
| //题目难度
| private Integer difficult;
| //学科id
| private Integer subjectId;
| }
|
|