| | |
| | | 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.time.LocalDateTime; |
| | | 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; |
| | | |
| | | /** |
| | |
| | | |
| | | @TableField("exam_paper_type") |
| | | /** 试卷类型 */ |
| | | private String examPaperType; |
| | | private Integer examPaperType; |
| | | |
| | | @TableField("exam_place") |
| | | /** 考试地点 */ |
| | |
| | | |
| | | @TableField("status") |
| | | /** 考试状态 */ |
| | | private String status; |
| | | private ExamStatusEnum status; |
| | | |
| | | @TableField("start_time") |
| | | /** 开始时间 */ |
| | | private LocalDateTime startTime; |
| | | private Date startTime; |
| | | |
| | | @TableField("end_time") |
| | | /** 结束时间 */ |
| | | private LocalDateTime endTime; |
| | | private Date endTime; |
| | | |
| | | @TableField("teacher_id") |
| | | /** 创建老师 */ |
| | | private Integer teacherId; |
| | | |
| | | @TableField(value = "create_time", fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | |
| | | @Version |
| | | private Integer updateVersion; |
| | | } |