package jnpf.tmsEntity.selftest;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* 试卷题目(含作答回顾字段)
|
*/
|
@Data
|
public class TmsSelfTestQuestionVO {
|
|
@Schema(description = "试题ID")
|
private String id;
|
|
@Schema(description = "试题编号")
|
private String questionNo;
|
|
@Schema(description = "题型")
|
private String questionType;
|
|
@Schema(description = "难度")
|
private String difficulty;
|
|
@Schema(description = "题干")
|
private String stem;
|
|
@Schema(description = "选项")
|
private List<TmsSelfTestOptionVO> options;
|
|
@Schema(description = "正确答案(逗号分隔标签)")
|
private String correctAnswer;
|
|
@Schema(description = "用户作答(逗号分隔标签)")
|
private String userAnswer;
|
|
@Schema(description = "是否正确 1/0")
|
private String isRight;
|
|
@Schema(description = "排序号")
|
private Integer sortNo;
|
}
|