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