1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package jnpf.tmsEntity.selftest;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| /**
| * 题型抽题条件
| */
| @Data
| public class TmsSelfTestTypeSetting {
|
| @Schema(description = "抽题数量")
| private Integer count;
|
| @Schema(description = "难度 veryEasy/easier/normal/harder/veryHard")
| private String difficulty;
| }
|
|