龚焕茏
2024-05-07 49429bad1036c81c056faeadfa009c53ba777fad
src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionPageRequestVM.java
@@ -8,9 +8,10 @@
    private Integer id;
    private Integer level;
    private Integer subjectId;
    private Integer[] subjectId;
    private Integer questionType;
    private String content;
    private String questionName;
    public Integer getId() {
@@ -29,11 +30,11 @@
        this.level = level;
    }
    public Integer getSubjectId() {
    public Integer[] getSubjectId() {
        return subjectId;
    }
    public void setSubjectId(Integer subjectId) {
    public void setSubjectId(Integer[] subjectId) {
        this.subjectId = subjectId;
    }
@@ -52,4 +53,12 @@
    public void setContent(String content) {
        this.content = content;
    }
    public String getQuestionName() {
        return questionName;
    }
    public void setQuestionName(String questionName) {
        this.questionName = questionName;
    }
}