|
@@ -450,6 +450,17 @@ public class ClassGroupController extends BaseController {
|
|
|
return succeed(PageUtil.pageInfo(courseTeachingPointIPage));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "管理端-场地管理列表")
|
|
|
+ @PostMapping("/eduTeachingPointCourse")
|
|
|
+ public HttpResponseResult<PageInfo<TeachingPointWrapper.CourseTeachingPoint>>
|
|
|
+ eduTeachingPointCourse(@RequestBody TeachingPointWrapper.TeachingPointQuery queryInfo) {
|
|
|
+ if (queryInfo.getCourseStatus() == null) {
|
|
|
+ queryInfo.setCourseStatus(CourseStatusEnum.OVER);
|
|
|
+ }
|
|
|
+ IPage<TeachingPointWrapper.CourseTeachingPoint> courseTeachingPointIPage = courseScheduleService.teachingPointCourse(queryInfo);
|
|
|
+ return succeed(PageUtil.pageInfo(courseTeachingPointIPage));
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "学校端-场地设置列表")
|
|
|
@PostMapping("/teachingPointClass")
|
|
|
public HttpResponseResult<PageInfo<TeachingPointWrapper.ClassTeachingPoint>> teachingPointClass(@RequestBody TeachingPointWrapper.TeachingPointQuery queryInfo,@RequestHeader Integer coopId) {
|