zf
2024-02-01 ff361322dc19350e81cf26ae4e6c542ad0f934d1
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
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;
}