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;
|
| @Data
| public class ExamPaperPageRequestVM extends BaseExamPage {
|
| private Integer id;
| private Integer subjectId;
| private Integer level;
| private Integer paperType;
| private Integer taskExamId;
| }
|
|