1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package jnpf.tmsEntity.selftest;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| import java.util.Map;
|
| /**
| * 交卷请求
| */
| @Data
| public class TmsSelfTestSubmitForm {
|
| @Schema(description = "作答:questionId -> 选项标签(单选/判断) 或 标签数组(多选)")
| private Map<String, Object> answers;
| }
|
|