| | |
| | | package com.gkhy.exam.institutionalaccess.controller; |
| | | |
| | | import com.gkhy.exam.institutionalaccess.entity.ThCourseDTO; |
| | | import com.gkhy.exam.institutionalaccess.model.query.ThCourseQuery; |
| | | import com.gkhy.exam.institutionalaccess.service.ThCourseManagerService; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | |
| | | public AjaxResult getStudent(@PathVariable String courseUuid) { |
| | | return AjaxResult.success(courseManagerService.getSutdent(courseUuid)); |
| | | } |
| | | |
| | | /** |
| | | * 课程审核 |
| | | */ |
| | | @PostMapping("/checkCourse") |
| | | public AjaxResult checkCourse(@RequestBody ThCourseDTO thCourseDTO){ |
| | | return toAjax(courseManagerService.updateByCourse(thCourseDTO)); |
| | | } |
| | | |
| | | } |