package com.mindskip.xzs.viewmodel.admin.question;
|
|
import com.mindskip.xzs.domain.QuestionSubject;
|
import com.mindskip.xzs.viewmodel.BaseVM;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@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;
|
|
private List<QuestionSubject> questionSubjects;
|
|
/** 所属部门名字 */
|
private String deptNames;
|
|
}
|