| | |
| | | import org.springblade.modules.exam.util.SecurityPaperUtil; |
| | | import org.springblade.modules.exam.vo.ExamScoreVO; |
| | | import org.springblade.modules.exam.vo.UpdateParamVo; |
| | | import org.springblade.modules.information.vo.InformationVO; |
| | | import org.springblade.modules.securitypaper.entity.SecurityPaper; |
| | | import org.springblade.modules.securitypaper.service.SecurityPaperService; |
| | | import org.springblade.modules.system.entity.User; |
| | |
| | | * @param query page,size |
| | | */ |
| | | @GetMapping("/score-page") |
| | | public R<IPage<ExamScoreVO>> scorePage(Query query, String deptid, String jurisdiction) { |
| | | IPage<ExamScoreVO> pages = examScoreService.scorePage(Condition.getPage(query),deptid,jurisdiction); |
| | | public R<IPage<ExamScoreVO>> scorePage(Query query,InformationVO information) { |
| | | IPage<ExamScoreVO> pages = examScoreService.scorePage(Condition.getPage(query),information); |
| | | return R.data(pages); |
| | | } |
| | | |
| | |
| | | public R refreshTrainExamScore() { |
| | | return R.status(examScoreService.refreshTrainExamScore()); |
| | | } |
| | | |
| | | /** |
| | | * 考试情况统计,按月统计各个培训学校考试合格人数和不合格人数 |
| | | * @param |
| | | */ |
| | | @GetMapping("/getExamStatisInfo") |
| | | public R getExamStatisInfo(InformationVO information) { |
| | | return R.data(examScoreService.getExamStatisInfo(information)); |
| | | } |
| | | |
| | | |
| | | |
| | | } |