diff --git a/web/src/main/java/com/ibeetl/jlw/entity/TeacherOpenCourseScheduleSession.java b/web/src/main/java/com/ibeetl/jlw/entity/TeacherOpenCourseScheduleSession.java index 6e59ae96..beef4ed3 100644 --- a/web/src/main/java/com/ibeetl/jlw/entity/TeacherOpenCourseScheduleSession.java +++ b/web/src/main/java/com/ibeetl/jlw/entity/TeacherOpenCourseScheduleSession.java @@ -2,6 +2,7 @@ package com.ibeetl.jlw.entity; import cn.hutool.core.util.ObjectUtil; import com.ibeetl.admin.core.annotation.Dict; +import com.ibeetl.admin.core.annotation.DictDeep; import com.ibeetl.admin.core.entity.BaseEntity; import com.ibeetl.admin.core.util.ValidateConfig; import lombok.Data; @@ -101,6 +102,7 @@ public class TeacherOpenCourseScheduleSession extends BaseEntity{ " and teacher_open_course_id = #teacherOpenCourseId#" ) @UpdateIgnore @InsertIgnore + @DictDeep private List sessionTagList; // 上课班级名称集合 diff --git a/web/src/main/java/com/ibeetl/jlw/service/TeacherOpenCourseScheduleSessionService.java b/web/src/main/java/com/ibeetl/jlw/service/TeacherOpenCourseScheduleSessionService.java index 6737544b..f118399a 100644 --- a/web/src/main/java/com/ibeetl/jlw/service/TeacherOpenCourseScheduleSessionService.java +++ b/web/src/main/java/com/ibeetl/jlw/service/TeacherOpenCourseScheduleSessionService.java @@ -182,7 +182,9 @@ public class TeacherOpenCourseScheduleSessionService extends CoreBaseService getValuesByQuery (TeacherOpenCourseScheduleSessionQuery teacherOpenCourseScheduleSessionQuery){ - return teacherOpenCourseScheduleSessionDao.getValuesByQuery(teacherOpenCourseScheduleSessionQuery); + List valuesByQuery = teacherOpenCourseScheduleSessionDao.getValuesByQuery(teacherOpenCourseScheduleSessionQuery); + queryListAfter(valuesByQuery); + return valuesByQuery; } public TeacherOpenCourseScheduleSession getInfo (Long teacherOpenCourseScheduleSessionId){