xiangpei
2024-11-12 318d743292e40a939619cd9425066e10d67cf482
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
package com.ycl.jxkg.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.jxkg.domain.base.AbsOnlyIdEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author:xp
 * @date:2024/11/12 17:53
 */
@Data
@TableName("t_question_answer_record")
public class QuestionAnswerRecord extends AbsOnlyIdEntity {
 
    @TableField("exam_id")
    private Integer examId;
 
    @TableField("user_id")
    private Integer userId;
 
    @TableField("paper_id")
    private Integer paperId;
 
    @TableField("question_id")
    private Integer questionId;
 
    @TableField("do_right")
    private Boolean doRight;
 
    @TableField("user_answer")
    private String userAnswer;
 
    @TableField("score")
    private BigDecimal score;
 
    @TableField("question_type")
    private Integer questionType;
}