| | |
| | | * @param query page,size |
| | | */ |
| | | @GetMapping("/score-page") |
| | | public R<IPage<ExamScoreVO>> scorePage(Query query,InformationVO information) { |
| | | IPage<ExamScoreVO> pages = examScoreService.scorePage(Condition.getPage(query),information); |
| | | public R<IPage<ExamScoreVO>> scorePage(Query query,ExamScoreVO examScore) { |
| | | IPage<ExamScoreVO> pages = examScoreService.scorePage(Condition.getPage(query),examScore); |
| | | return R.data(pages); |
| | | } |
| | | |
| | |
| | | return R.data(examScoreService.getExamStatisInfo(information)); |
| | | } |
| | | |
| | | /** |
| | | * 获取当前时间 |
| | | * @param |
| | | */ |
| | | @GetMapping("/getNowDate") |
| | | public R getNowDate() { |
| | | return R.data(System.currentTimeMillis()); |
| | | } |
| | | |
| | | |
| | | |
| | | } |