package com.mindskip.xzs.viewmodel.admin.question;
|
|
import com.mindskip.xzs.viewmodel.BaseVM;
|
import lombok.Data;
|
|
/**
|
* @version 2.2.0
|
* @description: 题目返回
|
* Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
|
* @date 2021 /9/7 9:45
|
*/
|
@Data
|
public class QuestionResponseVM extends BaseVM {
|
|
private Integer id;
|
|
/**
|
* 题型
|
*/
|
private Integer questionType;
|
|
/**
|
* 题目内容
|
*/
|
private Integer textContentId;
|
|
/**
|
* 创建时间
|
*/
|
private String createTime;
|
|
/**
|
* 学科
|
*/
|
private Integer subjectId;
|
|
/**
|
* 创建人
|
*/
|
private Integer createUser;
|
|
/**
|
* 得分
|
*/
|
private String score;
|
|
/**
|
* 状态
|
*/
|
private Integer status;
|
|
/**
|
* 标答
|
*/
|
private String correct;
|
|
/**
|
* 解析
|
*/
|
private Integer analyzeTextContentId;
|
|
/**
|
* 难度
|
*/
|
private Integer difficult;
|
|
/**
|
* 题干
|
*/
|
private String shortTitle;
|
|
}
|