| | |
| | | package com.qxueyou.scc.admin.score.service.impl; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.qxueyou.scc.base.model.Pager; |
| | | import com.qxueyou.scc.exam.dao.ExamResultVDao; |
| | | import com.qxueyou.scc.exam.model.ExamResultV; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | |
| | | |
| | | @Autowired |
| | | ExamScoreVDAO examDao; |
| | | |
| | | @Autowired |
| | | ExamResultVDao examResultVDao; |
| | | |
| | | @Override |
| | | public Map<String,Object> queryClassExamScoreInfo(String classId) { |
| | |
| | | ); |
| | | } |
| | | |
| | | @Override |
| | | public List<ExamResultV> allExamResultV(String classId, Pager page) { |
| | | return examResultVDao.getResultList(classId,page); |
| | | } |
| | | |
| | | |
| | | } |