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;
|
|
|
}
|