1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ots.project.exam.viewmodel;
|
| import com.ots.project.exam.dto.BaseExamPage;
| import lombok.Data;
|
| import javax.validation.constraints.NotNull;
|
| @Data
| public class ExamPaperPageVM extends BaseExamPage {
| @NotNull
| private Integer paperType;
| private Integer subjectId;
| private Integer levelId;
| }
|
|