package com.ycl.jxkg.domain.vo;
|
|
import com.ycl.jxkg.domain.question.QuestionItemObject;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* @author:xp
|
* @date:2024/6/13 15:27
|
*/
|
@Data
|
public class DoQuestionVO extends FinishedQuestion {
|
|
private Integer id;
|
|
/** 题目类型 */
|
private Integer questionType;
|
|
/** 题干 */
|
private String title;
|
|
/** 题目答案 */
|
private String questionAnswer;
|
|
/** 题目解析,老师阅卷使用 */
|
private String analyze;
|
|
/** 选项json */
|
private String content;
|
|
/** 题目难度 */
|
private Integer difficult;
|
|
/** 针对单选、判断、多选给出正确与否 */
|
private Boolean right;
|
|
/** 题目分数 */
|
private BigDecimal questionScore;
|
|
/** 语音题音频 */
|
private String audioFile;
|
|
/** 音频原始名 */
|
private String originalFile;
|
|
private Integer itemOrder;
|
/** 题目选项 */
|
private List<QuestionItemObject> questionItemList;
|
|
/** 考试id */
|
private Integer examId;
|
/** 考试名称 */
|
private String examName;
|
}
|