|
|
|
@ -6,8 +6,11 @@ import com.ibeetl.admin.core.annotation.Function;
|
|
|
|
|
import com.ibeetl.admin.core.entity.CoreUser;
|
|
|
|
|
import com.ibeetl.admin.core.file.FileService;
|
|
|
|
|
import com.ibeetl.admin.core.web.JsonResult;
|
|
|
|
|
import com.ibeetl.jlw.entity.TeacherOpenCourseScheduleSessionClass;
|
|
|
|
|
import com.ibeetl.jlw.entity.TeacherOpenCourseScheduleSessionTag;
|
|
|
|
|
import com.ibeetl.jlw.service.TeacherOpenCourseScheduleSessionClassService;
|
|
|
|
|
import com.ibeetl.jlw.service.TeacherOpenCourseScheduleSessionTagService;
|
|
|
|
|
import com.ibeetl.jlw.web.query.TeacherOpenCourseScheduleSessionClassQuery;
|
|
|
|
|
import com.ibeetl.jlw.web.query.TeacherOpenCourseScheduleSessionTagQuery;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.apache.commons.logging.Log;
|
|
|
|
@ -38,6 +41,7 @@ public class TeacherOpenCourseScheduleSessionTagController{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired private TeacherOpenCourseScheduleSessionTagService teacherOpenCourseScheduleSessionTagService;
|
|
|
|
|
@Autowired private TeacherOpenCourseScheduleSessionClassService teacherOpenCourseScheduleSessionClassService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
FileService fileService;
|
|
|
|
@ -121,7 +125,15 @@ public class TeacherOpenCourseScheduleSessionTagController{
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public ModelAndView initSetCourseScheduleCondition() {
|
|
|
|
|
ModelAndView view = new ModelAndView("/jlw/teacherOpenCourseScheduleSessionTag/initSetCourseScheduleCondition.html") ;
|
|
|
|
|
// 课次
|
|
|
|
|
TeacherOpenCourseScheduleSessionTag param = new TeacherOpenCourseScheduleSessionTag();
|
|
|
|
|
List<TeacherOpenCourseScheduleSessionTag> sessionTagList = teacherOpenCourseScheduleSessionTagService.getValues(param);
|
|
|
|
|
// 教室
|
|
|
|
|
TeacherOpenCourseScheduleSessionClassQuery sessionClassQuery = new TeacherOpenCourseScheduleSessionClassQuery();
|
|
|
|
|
List<TeacherOpenCourseScheduleSessionClass> sessionClassList = teacherOpenCourseScheduleSessionClassService.getLevelList(sessionClassQuery);
|
|
|
|
|
view.addObject("search", TeacherOpenCourseScheduleSessionTagQuery.class.getName());
|
|
|
|
|
view.addObject("sessionClassList", sessionClassList);
|
|
|
|
|
view.addObject("sessionTagList", sessionTagList);
|
|
|
|
|
return view;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|