mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-11 20:06:51 +08:00
修复数据可指定课程id
This commit is contained in:
@@ -33,10 +33,12 @@ public class StudyExamApi extends ApiBaseController{
|
|||||||
* 矫正学员课程进度及完成状态
|
* 矫正学员课程进度及完成状态
|
||||||
* */
|
* */
|
||||||
@GetMapping("/correctStstus")
|
@GetMapping("/correctStstus")
|
||||||
public void correctStstus(String courseId){
|
public JsonResponse<Map<String,Object>> correctStstus(String courseId){
|
||||||
log.info("---------矫正学员课程进度及完成状态--correctStstus---开始-----");
|
Map<String,Object> rs=new HashMap<String,Object>();
|
||||||
|
log.info("---------矫正学员课程进度及完成状态--correctStstus---开始-----courseId = " + courseId);
|
||||||
sexamService.correctStstus(courseId);
|
sexamService.correctStstus(courseId);
|
||||||
log.info("---------矫正学员课程进度及完成状态--correctStstus---结束-----");
|
log.info("---------矫正学员课程进度及完成状态--correctStstus---结束-----");
|
||||||
|
return success(rs);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/save")
|
@PostMapping("/save")
|
||||||
|
|||||||
Reference in New Issue
Block a user