xiangpei
2024-06-04 81b6f1cc38a941b65f989ecdd40529f2648bdd8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.ycl.jxkg.domain.entity;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
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
@TableName("t_exam_paper_question_customer_answer")
public class ExamPaperQuestionCustomerAnswer extends AbsEntity {
 
    /**
     * 题目Id
     */
    @TableField("question_id")
    private Integer questionId;
 
    /**
     * 试卷Id
     */
    @TableField("exam_paper_id")
    private Integer examPaperId;
 
    /**
     * 答案Id
     */
    @TableField("exam_paper_answer_id")
    private Integer examPaperAnswerId;
 
    /**
     * 题型
     */
    @TableField("question_type")
    private Integer questionType;
 
    /**
     * 学科
     */
    @TableField("subject_id")
    private Integer subjectId;
 
    /**
     * 得分
     */
    @TableField("customer_score")
    private Integer customerScore;
 
    /**
     * 题目原始分数
     */
    @TableField("question_score")
    private Integer questionScore;
 
    /**
     * 问题内容
     */
    @TableField("question_text_content_id")
    private Integer questionTextContentId;
 
    /**
     * 做题答案
     */
    @TableField("answer")
    private String answer;
 
    /**
     * 做题内容
     */
    @TableField("text_content_id")
    private Integer textContentId;
 
    /**
     * 是否正确
     */
    @TableField("do_right")
    private Boolean doRight;
 
    /**
     * 做题人
     */
    @TableField("create_user")
    private Integer createUser;
 
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
 
    @TableField("item_order")
    private Integer itemOrder;
 
}