智慧保安后台管理-外网项目备份
zhongrj
2023-09-17 8853292babb2ad94de4a3207966f1e83b767cd2d
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package org.springblade.modules.accreditation.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springblade.modules.accreditation.entity.AccreditationRecords;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 制证记录vo
 * @author zhongrj
 * @since 2021-11-2
 */
@Data
public class AccreditationRecordsVo extends AccreditationRecords implements Serializable {
 
    /**
     * 制证人员姓名
     */
    private String realName;
 
    /**
     * 制证人员组织机构名称
     */
    private String deptName;
 
    /**
     * 性别
     */
    private String sex;
 
    /**
     * 制证人员身份证号
     */
    private String idCardNo;
 
    /**
     * 头像
     */
    private String avatar;
 
    /**
     * 保安证二维码
     */
    private String qrCode;
 
    /**
     * 保安证编号
     */
    private String securityNumber;
 
    /**
     * 年龄
     */
    private Integer age;
 
    /**
     * 申请ids
     */
    private String ids;
 
    /**
     *开始时间
     */
    private String startTime;
 
    /**
     * 结束时间
     */
    private String endTime;
 
    /**
     * 是否有头像  1:有  2:没有上传
     */
    private Integer isAvatar;
 
    /**
     * 申请人姓名
     */
    private String applyName;
 
    /**
     * 申请人单位
     */
    private String applyUnit;
 
    /**
     * 身份证地址
     */
    private String registered;
 
 
    /**
     * 是否制证  6:是  7:否
     */
    private Integer userType;
 
    private Long deptId;
 
    private String jurisdiction;
}