video check

This commit is contained in:
wangjinlei
2024-06-19 14:12:02 +08:00
parent 3634bb77aa
commit 8e41a4215b
3 changed files with 21 additions and 5 deletions

View File

@@ -62,5 +62,10 @@ public class CourseController {
return R.ok().put("courseList",courseList);
}
@RequestMapping("/checkVideoByMD")
public R checkVideoByMD(@RequestBody Map<String,String> map) throws Exception {
String playAuth = courseMedicalService.checkVideoByMD(map.get("id"));
return R.ok().put("playAuth",playAuth);
}
}