| | |
| | | import com.mindskip.xzs.viewmodel.student.exam.ExamPaperSubmitItemVM; |
| | | import com.mindskip.xzs.viewmodel.student.question.answer.QuestionPageStudentRequestVM; |
| | | import com.github.pagehelper.PageInfo; |
| | | import com.mindskip.xzs.viewmodel.student.question.answer.QuestionPageStudentResponseVM; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ExamPaperQuestionCustomerAnswerService extends BaseService<ExamPaperQuestionCustomerAnswer> { |
| | | |
| | | PageInfo<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVM requestVM); |
| | | PageInfo<QuestionPageStudentResponseVM> studentPage(QuestionPageStudentRequestVM requestVM); |
| | | |
| | | List<ExamPaperQuestionCustomerAnswer> selectListByPaperAnswerId(Integer id); |
| | | |
| | |
| | | ExamPaperSubmitItemVM examPaperQuestionCustomerAnswerToVM(ExamPaperQuestionCustomerAnswer qa); |
| | | |
| | | |
| | | Integer selectAllCount(); |
| | | Integer selectAllCount(List<Integer> deptIds); |
| | | |
| | | List<Integer> selectMothCount(); |
| | | List<Integer> selectMothCount(List<Integer> deptIds); |
| | | |
| | | int updateScore(List<ExamPaperAnswerUpdate> examPaperAnswerUpdates); |
| | | } |