package com.mindskip.xzs.viewmodel.admin.question;
|
|
import com.mindskip.xzs.domain.QuestionSubject;
|
import lombok.Data;
|
import java.util.List;
|
|
/**
|
* @author:xp
|
* @date:2024/3/15 10:35
|
*/
|
@Data
|
public class ExamQuestionVO {
|
|
private Integer id;
|
|
/**
|
* 题目类型
|
*/
|
private Integer questionType;
|
|
/**
|
* 课目
|
*/
|
private Integer subjectId;
|
|
/**
|
* 题干
|
*/
|
private String title;
|
|
/**
|
* 分数
|
*/
|
private String score;
|
|
/**
|
* 解析
|
*/
|
private String analyze;
|
|
/**
|
* 难度
|
*/
|
private Integer difficult;
|
|
/**
|
* 多选题答案
|
*/
|
private List<String> correctArray;
|
|
/**
|
* 单选答案
|
*/
|
private String correct;
|
|
private String sbNames;
|
|
private List<QuestionSubject> questionSubjects;
|
|
/**
|
* 选项
|
*/
|
private List<QuestionEditItemVM> items;
|
|
private Integer itemOrder;
|
|
private String department;
|
|
private Integer infoTextContentId;
|
|
}
|