| | |
| | | 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[] subjectId; |
| | | private Integer questionType; |
| | | private String content; |
| | | private String questionName; |
| | | |
| | | private String titleContent; |
| | | |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Integer getLevel() { |
| | | return level; |
| | | } |
| | | |
| | | public void setLevel(Integer level) { |
| | | this.level = level; |
| | | } |
| | | |
| | | public Integer[] getSubjectId() { |
| | | return subjectId; |
| | | } |
| | | |
| | | public void setSubjectId(Integer[] subjectId) { |
| | | this.subjectId = subjectId; |
| | | } |
| | | |
| | | public Integer getQuestionType() { |
| | | return questionType; |
| | | } |
| | | |
| | | public void setQuestionType(Integer questionType) { |
| | | this.questionType = questionType; |
| | | } |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | } |