智慧保安后台管理项目备份
Administrator
2021-07-21 ce1bed041480dd3a4f1bab977ba7e02a2e055462
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package org.springblade.modules.exam.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 选择题实体类
 * @author zhongrj
 * @time 2021-07-16
 */
@Data
@TableName("exam_subject_choices")
public class ExamSubjectChoices implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 选择题主键id
     */
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
 
 
    /**
     * 题目 ID
     */
    @TableField("category_id")
    private Long categoryId;
 
    /**
     * 题目名称
     */
    @TableField("subject_name")
    private String subjectName;
 
    /**
     * 题目类型
     */
    @TableField("choices_type")
    private Integer choicesType;
 
    /**
     * 参考答案
     */
    private String answer;
 
    /**
     * 题目分值
     */
    private Integer score;
 
    /**
     * 解析
     */
    private String analysis;
 
 
    /**
     * 难度等级
     */
    private Integer level;
 
 
    /**
     * 创建人
     */
    private String creator;
 
    /**
     * 创建时间
     */
    @TableField("create_date")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createDate;
 
 
    /**
     * 修改人
     */
    private String modifier;
 
    /**
     * 修改时间
     */
    @TableField("modify_date")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date modifyDate;
 
    /**
     * 删除标记 0:正常;1:删除
     */
    @TableField("del_flag")
    private Integer delFlag;
 
    /**
     * 系统编号
     */
    @TableField("application_code")
    private String applicationCode;
 
    /**
     *
     */
    @TableField("tenant_code")
    private String tenantCode;
 
 
}