package com.gkhy.exam.noncoalmine.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.time.LocalDateTime; /** * @email 1603559716@qq.com * @author: zf * @date: 2023/10/13 * @time: 13:53 */ @Data public class IdentificationRecord { @TableId(type = IdType.AUTO) private Long id; //是否是煤矿(0非,1是) private Byte isCm; //姓名 private String name; //性别 0男,1女 private String sex; //身份证 private String idCard; //民族 private String nationCode; //考试中心名称 private String centerName; //考试点名称 private String roomName; //考试科目 private String subject; //删除标识(0未删除,2删除) private Byte delFlag; //推送时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime compareTime; }