|
|
|
@ -12,10 +12,7 @@ import com.ibeetl.jlw.entity.Teacher;
|
|
|
|
|
import com.ibeetl.jlw.entity.TeacherOpenCourseScheduleSession;
|
|
|
|
|
import com.ibeetl.jlw.entity.TeacherOpenCourseScheduleSessionClass;
|
|
|
|
|
import com.ibeetl.jlw.entity.TeacherOpenCourseScheduleSessionOptions;
|
|
|
|
|
import com.ibeetl.jlw.service.TeacherOpenCourseScheduleSessionClassService;
|
|
|
|
|
import com.ibeetl.jlw.service.TeacherOpenCourseScheduleSessionService;
|
|
|
|
|
import com.ibeetl.jlw.service.TeacherOpenCourseScheduleSessionTagService;
|
|
|
|
|
import com.ibeetl.jlw.service.TeacherOpenCourseService;
|
|
|
|
|
import com.ibeetl.jlw.service.*;
|
|
|
|
|
import com.ibeetl.jlw.web.query.TeacherOpenCourseQuery;
|
|
|
|
|
import com.ibeetl.jlw.web.query.TeacherOpenCourseScheduleSessionClassQuery;
|
|
|
|
|
import com.ibeetl.jlw.web.query.TeacherOpenCourseScheduleSessionQuery;
|
|
|
|
@ -53,6 +50,7 @@ public class TeacherOpenCourseScheduleSessionController{
|
|
|
|
|
@Autowired private TeacherOpenCourseScheduleSessionService teacherOpenCourseScheduleSessionService;
|
|
|
|
|
@Autowired private TeacherOpenCourseScheduleSessionTagService teacherOpenCourseScheduleSessionTagService;
|
|
|
|
|
@Autowired private TeacherOpenCourseScheduleSessionClassService teacherOpenCourseScheduleSessionClassService;
|
|
|
|
|
@Autowired private TeacherOpenCourseScheduleSessionSnapService teacherOpenCourseScheduleSessionSnapService;
|
|
|
|
|
@Autowired private TeacherOpenCourseService teacherOpenCourseService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
@ -71,6 +69,7 @@ public class TeacherOpenCourseScheduleSessionController{
|
|
|
|
|
}
|
|
|
|
|
PageQuery page = condition.getPageQuery();
|
|
|
|
|
teacherOpenCourseScheduleSessionService.queryByConditionQuery(page);
|
|
|
|
|
teacherOpenCourseScheduleSessionSnapService.fullSessionTagList(page.getList());
|
|
|
|
|
return JsonResult.success(page);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -98,6 +97,7 @@ public class TeacherOpenCourseScheduleSessionController{
|
|
|
|
|
condition.setOrgId(coreUser.getOrgId());
|
|
|
|
|
}
|
|
|
|
|
List<TeacherOpenCourseScheduleSession>list = teacherOpenCourseScheduleSessionService.getValuesByQuery(condition);
|
|
|
|
|
teacherOpenCourseScheduleSessionSnapService.fullSessionTagList(list);
|
|
|
|
|
return JsonResult.success(list);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -201,6 +201,7 @@ public class TeacherOpenCourseScheduleSessionController{
|
|
|
|
|
}
|
|
|
|
|
PageQuery page = condition.getPageQuery();
|
|
|
|
|
teacherOpenCourseScheduleSessionService.queryByConditionGroup(page);
|
|
|
|
|
teacherOpenCourseScheduleSessionSnapService.fullSessionTagList(page.getList());
|
|
|
|
|
return JsonResult.success(page);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -216,6 +217,7 @@ public class TeacherOpenCourseScheduleSessionController{
|
|
|
|
|
}
|
|
|
|
|
PageQuery page = condition.getPageQuery();
|
|
|
|
|
teacherOpenCourseScheduleSessionService.queryByCondition(page);
|
|
|
|
|
teacherOpenCourseScheduleSessionSnapService.fullSessionTagList(page.getList());
|
|
|
|
|
return JsonResult.success(page);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -302,6 +304,7 @@ public class TeacherOpenCourseScheduleSessionController{
|
|
|
|
|
condition.setOrgId(coreUser.getOrgId());
|
|
|
|
|
}
|
|
|
|
|
List<TeacherOpenCourseScheduleSession>list = teacherOpenCourseScheduleSessionService.getValuesByQuery(condition);
|
|
|
|
|
teacherOpenCourseScheduleSessionSnapService.fullSessionTagList(list);
|
|
|
|
|
return JsonResult.success(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -366,6 +369,7 @@ public class TeacherOpenCourseScheduleSessionController{
|
|
|
|
|
condition.setOrgId(coreUser.getOrgId());
|
|
|
|
|
}
|
|
|
|
|
teacherOpenCourseScheduleSessionService.queryByConditionGroup(page);
|
|
|
|
|
teacherOpenCourseScheduleSessionSnapService.fullSessionTagList(page.getList());
|
|
|
|
|
return JsonResult.success(page);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|