| | |
| | | package org.springblade.modules.exam.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.modules.desk.entity.Notice; |
| | | import org.springblade.modules.exam.entity.ExamPaper; |
| | | |
| | | /** |
| | | * 通知公告视图类 |
| | | * 考试类 |
| | | * |
| | | * @author Chill |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class ExamPaperVO extends Notice { |
| | | |
| | | @ApiModelProperty(value = "通知类型名") |
| | | private String categoryName; |
| | | |
| | | @ApiModelProperty(value = "租户编号") |
| | | private String tenantId; |
| | | public class ExamPaperVO extends ExamPaper { |
| | | /** |
| | | * 考试人员姓名 |
| | | */ |
| | | private String realName; |
| | | |
| | | /** |
| | | * 通知开始时间 |
| | | * 身份证号 |
| | | */ |
| | | private String startTime; |
| | | private String idCardNo; |
| | | |
| | | /** |
| | | * 通知结束时间 |
| | | * 准考证号 |
| | | */ |
| | | private String endTime; |
| | | private String candidateNo; |
| | | |
| | | /** |
| | | * 行政区(辖区)id |
| | | * 性别 1 男 2 女 |
| | | */ |
| | | private Long jurisdiction; |
| | | private Integer sex; |
| | | |
| | | /** |
| | | * 用户id |
| | | * 考试 id |
| | | */ |
| | | private Long userId; |
| | | private Long applyId; |
| | | |
| | | /** |
| | | * 报名人数 |
| | | */ |
| | | private Integer num; |
| | | } |