fuliqi
2024-07-01 a745c3b358b97b468711a0ecac11dbe2d5d24018
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
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 java.util.Date;
 
import com.baomidou.mybatisplus.annotation.Version;
import com.ycl.jxkg.domain.base.AbsEntity;
import com.ycl.jxkg.enums.general.ExamStatusEnum;
import lombok.Data;
 
/**
 * 考试
 *
 * @author xp
 * @since 2024-06-11
 */
@Data
@TableName("t_exam")
public class Exam extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("exam_name")
    /** 考试名称 */
    private String examName;
 
    @TableField("exam_paper_id")
    /** 试卷ID */
    private Integer examPaperId;
 
    @TableField("classes_id")
    /** 班级ID */
    private Integer classesId;
 
    @TableField("exam_paper_type")
    /** 试卷类型 */
    private Integer examPaperType;
 
    @TableField("exam_place")
    /** 考试地点 */
    private String examPlace;
 
    @TableField("status")
    /** 考试状态 */
    private ExamStatusEnum status;
 
    @TableField("start_time")
    /** 开始时间 */
    private Date startTime;
 
    @TableField("end_time")
    /** 结束时间 */
    private Date endTime;
 
    @TableField("teacher_id")
    /** 创建老师 */
    private Integer teacherId;
 
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
 
    @Version
    private Integer updateVersion;
}