智慧保安后台管理-外网
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
package org.springblade.modules.exam.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springblade.modules.exam.entity.ExamScore;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * 选择题选项实体类vo
 * @author zhongrj
 * @time 2021-07-16
 */
@Data
public class ExamScoreVO extends ExamScore implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 公司名称
     */
    private String companyName;
 
    /**
     * 考试id,提交成绩时用
     */
    private Long papersId;
 
    /**
     * 考勤提交的结果
     */
    private List<ExamResultVO> examResultVOS;
 
    /**
     * 考试类型
     */
    private Integer examType;
 
 
    /**
     * 是否考试  1:否  2:是,考试结束  3:考试中
     */
    private Integer isExam;
 
    /**
     * 用户名
     */
    private String account;
 
    /**
     * 部门id
     */
    private Long deptId;
 
    /**
     * 培训公司id
     */
    private Long trainUnitId;
 
    /**
     * 考试时间
     */
    private String examDate;
 
    /**
     * 性别
     */
    private String sex;
 
    /**
     * 发证时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date paperTime;
 
    /**
     * 保安证编号
     */
    private String securityNumber;
 
    /**
     * 头像
     */
    private String avatar;
 
    /**
     * 是否有头像  1:有  2:没有上传
     */
    private Integer isAvatar;
 
}