|
@@ -143,4 +143,20 @@ public class CourseClassHourController {
|
|
|
return CommonResult.data(result);
|
|
return CommonResult.data(result);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 课程中心-课时表详情
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author pans
|
|
|
|
|
+ * @date 2025/07/02 10:36
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
|
|
+ @ApiOperation("课程中心-课时表详情")
|
|
|
|
|
+ @GetMapping("/disk/coursecentry/hourDetail")
|
|
|
|
|
+ public CommonResult<Map<String,Object>> hourDetail(@Valid ClassHourIdParam classHourIdParam, HttpServletRequest req) {
|
|
|
|
|
+ Map param =new HashMap();
|
|
|
|
|
+ param.put("id", req.getParameter("id"));
|
|
|
|
|
+ Map<String,Object> result=classHourService.queryInfo(param);
|
|
|
|
|
+ return CommonResult.data(result);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|