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("questionContent") private String questionContent; /** * 做题答案 */ @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; }