17808
2023-11-09 0c29b611124679e564f2e5bd63f10f8c8ac0ba81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.mindskip.xzs.viewmodel.student.question.answer;
 
import com.mindskip.xzs.base.BasePage;
 
public class QuestionPageStudentRequestVM extends BasePage {
    private Integer createUser;
 
    public Integer getCreateUser() {
        return createUser;
    }
 
    public void setCreateUser(Integer createUser) {
        this.createUser = createUser;
    }
}