package jnpf.tmsEntity.selftest;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
/**
|
* 开始自我检测请求
|
*/
|
@Data
|
public class TmsSelfTestStartForm {
|
|
@Schema(description = "题库ID")
|
private String bankId;
|
|
@Schema(description = "题库名称(可选)")
|
private String bankName;
|
|
@Schema(description = "单选题设置")
|
private TmsSelfTestTypeSetting single;
|
|
@Schema(description = "多选题设置")
|
private TmsSelfTestTypeSetting multi;
|
|
@Schema(description = "判断题设置")
|
private TmsSelfTestTypeSetting judge;
|
}
|