package com.ots.project.exam.domain;
|
import com.ots.framework.aspectj.lang.annotation.Excel;
|
import com.ots.framework.web.domain.BaseEntity;
|
import lombok.Getter;
|
import lombok.Setter;
|
import java.util.List;
|
|
@Getter
|
@Setter
|
public class TQuestion extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
private Long id;
|
|
@Excel(name = "题型")
|
private Long questionType;
|
|
private String langType;
|
private String langName;
|
|
@Excel(name = "维度")
|
private Long subjectId;
|
|
private String subjectName;
|
|
@Excel(name = "题目总分")
|
private Long score;
|
|
private Long gradeLevel;
|
|
private Long level;
|
|
private Long difficult;
|
|
private String correct;
|
|
@Excel(name = "题干id")
|
private Long infoTextContentId;
|
|
private String title;
|
|
private Long createUser;
|
|
private Long status;
|
|
private Long deleted;
|
|
private List<String> choiceInput;
|
|
private List<String> selectInput;
|
|
private String analyze;
|
|
private String content;
|
|
private String permanentId;
|
|
private Long lastId;
|
private Long levelId;
|
private String levelName;
|
|
private Long uuid;
|
private String questionTemplateId;
|
private String template;
|
public TQuestion() {
|
this.questionType = 1L;
|
this.status = 1L;
|
}
|
|
private String multilingual;
|
private List<String> multilingualList;
|
|
private Integer partOrder;
|
}
|