xiangpei
2024-06-03 a6c64679fa5f9b927fd01f85a627d63828912a3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ycl.jxkg.domain.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;
 
}