package com.mindskip.xzs.domain.vo;
|
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @author:xp
|
* @date:2024/5/10 11:07
|
*/
|
@Data
|
public class QuestionVO {
|
|
private Integer id;
|
|
/** 题目内容JSON */
|
private String contentJson;
|
|
/** 题目类型 */
|
private Integer questionType;
|
|
/** 难度 */
|
private Integer difficult;
|
|
/** 内容对象 */
|
private QuestionContentVO content;
|
|
/** 普通题目答案:单选、判断、问答 */
|
private String correct;
|
|
/** 多选题答案 */
|
private List<String> correctList;
|
|
/** 多选题答案数 */
|
private Integer answerNum = 0;
|
|
}
|