| | |
| | | import org.springblade.modules.exam.vo.ExamScoreVO; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 考试成绩服务类 |
| | |
| | | * @return |
| | | */ |
| | | IPage<ExamScoreVO> selectExamScorePage(IPage<ExamScoreVO> page, ExamScoreVO examScore); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | | * @param page |
| | | * @return |
| | | */ |
| | | IPage<ExamScoreVO> scorePage(IPage<ExamScoreVO> page,String deptid,String jurisdiction,String realName); |
| | | |
| | | /** |
| | | * 详情 |
| | |
| | | * @param isCovered 是否覆盖 |
| | | */ |
| | | void importExamScore(List<ExamScoreExcel> examScoreExcelList, Boolean isCovered); |
| | | |
| | | List<Map<String,Object>> scoreStatistics(String deptid,String jurisdiction); |
| | | List<Map<String,Object>> scoreStatisticssc(String deptid,String jurisdiction); |
| | | |
| | | /** |
| | | * 修改成绩信息 |
| | | * @param examScore |
| | | * @return |
| | | */ |
| | | boolean updateByIdAndQualifiee(ExamScore examScore); |
| | | |
| | | /** |
| | | * 考试合格人数对比 |
| | | * @param deptid |
| | | * @param jurisdiction |
| | | * @return |
| | | */ |
| | | List<Object> scoreStat(String deptid, String jurisdiction); |
| | | } |