| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.jxkg.domain.base.AbsEntity; |
| | | import com.ycl.jxkg.domain.enums.QuestionTypeEnum; |
| | | import com.ycl.jxkg.enums.QuestionTypeEnum; |
| | | import com.ycl.jxkg.enums.general.StatusEnum; |
| | | import com.ycl.jxkg.utils.ExamUtil; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * 1.单选题 2.多选题 3.判断题 4.填空题 5.简答题 |
| | | * 题目类型 1.单选题 2.多选题 3.判断题 4.填空题 5.简答题 6.语音题 7.计算题 8.分析题 |
| | | */ |
| | | @TableField("question_type") |
| | | private Integer questionType; |
| | | |
| | | /** |
| | | * 题目 |
| | | */ |
| | | @TableField("title") |
| | | private String title; |
| | | |
| | | /** |
| | | * 学科 |
| | | */ |
| | | @TableField("subject_id") |
| | | private Integer subjectId; |
| | | |
| | | /** |
| | | * 题目总分(千分制) |
| | | */ |
| | | @TableField("score") |
| | | private Integer score; |
| | | |
| | | /** |
| | | * 级别 |
| | | */ |
| | | @TableField("grade_level") |
| | | private Integer gradeLevel; |
| | | |
| | | /** |
| | | * 题目难度 |
| | |
| | | /** |
| | | * 题目 填空、 题干、解析、答案等信息 |
| | | */ |
| | | @TableField("info_text_content_id") |
| | | private Integer infoTextContentId; |
| | | @TableField("content") |
| | | private String content; |
| | | |
| | | /** |
| | | * 语音文件 |
| | | */ |
| | | @TableField("audio_file") |
| | | private String audioFile; |
| | | |
| | | /** |
| | | * 原始文件名称 |
| | | */ |
| | | @TableField("original_file") |
| | | private String originalFile; |
| | | |
| | | /** |
| | | * 创建人 |
| | |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * 1.正常 |
| | | * 1.启用、2.禁用 |
| | | */ |
| | | @TableField("status") |
| | | private Integer status; |
| | | private StatusEnum status; |
| | | |
| | | /** |
| | | * 创建时间 |