|
|
|
@ -18,6 +18,7 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
@ -89,6 +90,7 @@ public class TeacherOpenCourseScheduleSessionClassService extends CoreBaseServic
|
|
|
|
|
public JsonResult add(TeacherOpenCourseScheduleSessionClassQuery teacherOpenCourseScheduleSessionClassQuery){
|
|
|
|
|
String msg = "";
|
|
|
|
|
TeacherOpenCourseScheduleSessionClass teacherOpenCourseScheduleSessionClass = teacherOpenCourseScheduleSessionClassQuery.pojo();
|
|
|
|
|
teacherOpenCourseScheduleSessionClass.setTeacherOpenCourseScheduleSessionClassAddTime(new Date());
|
|
|
|
|
teacherOpenCourseScheduleSessionClassDao.insert(teacherOpenCourseScheduleSessionClass);
|
|
|
|
|
teacherOpenCourseScheduleSessionClassQuery.setTeacherOpenCourseScheduleSessionClassId(teacherOpenCourseScheduleSessionClass.getTeacherOpenCourseScheduleSessionClassId());
|
|
|
|
|
JsonResult jsonResult = new JsonResult();
|
|
|
|
|