| | |
| | | package com.mindskip.xzs.viewmodel.admin.exam; |
| | | |
| | | |
| | | |
| | | import com.mindskip.xzs.domain.ExamPaperDepartment; |
| | | import com.mindskip.xzs.domain.ExamPaperSubject; |
| | | |
| | | import javax.validation.Valid; |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | //部门ids |
| | | private Integer[] departmentIds; |
| | | |
| | | private Integer[] userIds; |
| | | |
| | | private Map<Integer,Integer> subjectSource; |
| | | |
| | | //随机试卷各个标签题型数量 |
| | | private List<QuestionTypeVM> questionTypeVMS; |
| | | |
| | | private Integer aggregateSource; |
| | | |
| | | private Integer[][] userId; |
| | | private String type; |
| | | |
| | | |
| | | |
| | |
| | | public void setAggregateSource(Integer aggregateSource) { |
| | | this.aggregateSource = aggregateSource; |
| | | } |
| | | |
| | | public List<QuestionTypeVM> getQuestionTypeVMS() { |
| | | return questionTypeVMS; |
| | | } |
| | | |
| | | public void setQuestionTypeVMS(List<QuestionTypeVM> questionTypeVMS) { |
| | | this.questionTypeVMS = questionTypeVMS; |
| | | } |
| | | |
| | | public Integer[] getUserIds() { |
| | | return userIds; |
| | | } |
| | | |
| | | public void setUserIds(Integer[] userIds) { |
| | | this.userIds = userIds; |
| | | } |
| | | |
| | | public Integer[][] getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(Integer[][] userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | } |