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
| package org.springblade.modules.exam.vo;
|
| import lombok.Data;
| import lombok.EqualsAndHashCode;
| import org.springblade.modules.exam.entity.ExamPaper;
|
| /**
| * 考试类
| *
| * @author Chill
| */
| @Data
| @EqualsAndHashCode(callSuper = true)
| public class ExamPaperVO extends ExamPaper {
| /**
| * 考试人员姓名
| */
| private String realName;
|
| /**
| * 身份证号
| */
| private String idCardNo;
|
| /**
| * 准考证号
| */
| private String candidateNo;
|
| /**
| * 性别 1 男 2 女
| */
| private Integer sex;
| }
|
|