龚焕茏
2024-07-16 7f25606654ebe94b5d82cfd9f74275989c71538d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mindskip.xzs.viewmodel.admin.question;
 
import com.mindskip.xzs.base.BasePage;
import lombok.Data;
 
 
@Data
public class QuestionPageRequestVM extends BasePage {
 
    private Integer id;
    private Integer level;
    private Integer[] subjectId;
    private Integer questionType;
    private String content;
    private String questionName;
 
    private String titleContent;
 
 
}