1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.ycl.jxkg.vo.admin.question;
|
| import com.ycl.jxkg.base.BasePage;
| import lombok.Data;
|
|
| @Data
| public class QuestionPageRequestVO extends BasePage {
|
| private Integer id;
|
| private Integer level;
|
| private Integer subjectId;
|
| private Integer questionType;
|
| private String content;
|
| }
|
|