| | |
| | | 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; |
| | | |
| | | /** |
| | | * 通知公告视图类 |
| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class ExamPaperVO extends Notice { |
| | | |
| | | @ApiModelProperty(value = "通知类型名") |
| | | private String categoryName; |
| | | |
| | | @ApiModelProperty(value = "租户编号") |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * 通知开始时间 |
| | | */ |
| | | private String startTime; |
| | | |
| | | /** |
| | | * 通知结束时间 |
| | | */ |
| | | private String endTime; |
| | | |
| | | /** |
| | | * 行政区(辖区)id |
| | | */ |
| | | private Long jurisdiction; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Long userId; |
| | | public class ExamPaperVO extends ExamPaper { |
| | | |
| | | } |