package com.gkhy.exam.coalmine.entity;
|
|
import java.time.LocalDateTime;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
import java.io.Serializable;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.springframework.data.annotation.Id;
|
|
@Data
|
@TableName("cm_staff_exam")
|
public class CmStaffExam implements Serializable {
|
|
@Id
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
//人员id
|
private Long staffId;
|
|
//开始时间
|
private LocalDateTime startTime;
|
|
//结束时间
|
private LocalDateTime endTime;
|
|
//考试中心
|
private String examCenter;
|
|
//科目
|
private String subject;
|
|
//考试结果;0-未通过;1-通过
|
private String result;
|
|
//删除标志(0代表存在 2代表删除)
|
private Byte delFlag;
|
|
/** 创建者 */
|
@TableField(fill = FieldFill.INSERT)
|
private String createBy;
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
/** 更新者 */
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private String updateBy;
|
|
/** 更新时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private LocalDateTime updateTime;
|
|
}
|