File was renamed from src/main/java/com/ycl/jxkg/domain/ExamPaperAnswer.java |
| | |
| | | package com.ycl.jxkg.domain; |
| | | package com.ycl.jxkg.domain.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.jxkg.domain.base.AbsEntity; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | public class ExamPaperAnswer implements Serializable { |
| | | @TableName("t_exam_paper_answer") |
| | | public class ExamPaperAnswer extends AbsEntity { |
| | | |
| | | private static final long serialVersionUID = -2143539181805283910L; |
| | | |
| | | private Integer id; |
| | | |
| | | @TableField("exam_paper_id") |
| | | private Integer examPaperId; |
| | | |
| | | /** |
| | | * 试卷名称 |
| | | */ |
| | | @TableField("paper_name") |
| | | private String paperName; |
| | | |
| | | /** |
| | | * 试卷类型( 1固定试卷 4.时段试卷 6.任务试卷) |
| | | */ |
| | | @TableField("paper_type") |
| | | private Integer paperType; |
| | | |
| | | /** |
| | | * 学科 |
| | | */ |
| | | @TableField("subject_id") |
| | | private Integer subjectId; |
| | | |
| | | /** |
| | | * 系统判定得分 |
| | | */ |
| | | @TableField("system_score") |
| | | private Integer systemScore; |
| | | |
| | | /** |
| | | * 最终得分(千分制) |
| | | */ |
| | | @TableField("user_score") |
| | | private Integer userScore; |
| | | |
| | | /** |
| | | * 试卷总分 |
| | | */ |
| | | @TableField("paper_score") |
| | | private Integer paperScore; |
| | | |
| | | /** |
| | | * 做对题目数量 |
| | | */ |
| | | @TableField("question_correct") |
| | | private Integer questionCorrect; |
| | | |
| | | /** |
| | | * 题目总数量 |
| | | */ |
| | | @TableField("question_count") |
| | | private Integer questionCount; |
| | | |
| | | /** |
| | | * 做题时间(秒) |
| | | */ |
| | | @TableField("do_time") |
| | | private Integer doTime; |
| | | |
| | | /** |
| | | * 试卷状态(1待判分 2完成) |
| | | */ |
| | | @TableField("status") |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 学生 |
| | | */ |
| | | @TableField("create_user") |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * 提交时间 |
| | | */ |
| | | @TableField("create_time") |
| | | private Date createTime; |
| | | |
| | | @TableField("task_exam_id") |
| | | private Integer taskExamId; |
| | | |
| | | } |