diff --git a/src/main/java/com/example/exam/exam/dal/ExamErrorQuestion.java b/src/main/java/com/example/exam/exam/dal/ExamErrorQuestion.java index b813800..7128ff9 100644 --- a/src/main/java/com/example/exam/exam/dal/ExamErrorQuestion.java +++ b/src/main/java/com/example/exam/exam/dal/ExamErrorQuestion.java @@ -23,6 +23,7 @@ public class ExamErrorQuestion { @TableId private String id; + /** * 试题id */ @@ -34,89 +35,14 @@ public class ExamErrorQuestion { private String taskId; /** - * 章节名称 + * 创建时间 */ - private String chapteridDictText; - /** - * 题型名称 - */ - private String subjectName; - - /** - * 题型难度(0:简单,1:一般,2:困难) - */ - private Integer quLevel; - - /** - * 试题内容(带样式:

下列表格123

\n\n\n\n\) - */ - private String content; - - /** - * 试题内容(纯文本) - */ - private String contentText; - - /** - * 解析(带样式) - */ - private String analysis; - - /** - * c语言参考答案 - */ - private String answer; - - - /** - * 知识点 - */ - private String pointNames; - /** - * 关键字 - */ - private String keywords; - - /** - * 课程类别 - */ - private String courseName; - - /** - * 专业分类 - */ - private String specialtyName; - /** - * 数据库名 - */ - private String tname; - - /** - * 试题答案 - */ - @TableField(exist = false) - private List answerList; - - /** - * 试题文件 - */ - @TableField(exist = false) - private List fileUploads; - - /** - * 试题判分 - */ - @TableField(exist = false) - private ExamQuestionScore questionScores; - - /** - * 试题关键字 - */ - @TableField(exist = false) - private List questionKeywords; - private LocalDateTime createTime; + /** + * 创建人 + */ + private String creator; /** * 租户id
1