属性扩展

beetlsql3-dev
Mlxa0324 2 years ago
parent 5faf88e776
commit 49816c6074

@ -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<TeacherOpenCourseScheduleSessionSnap> sessionTagList;
// 上课班级名称集合

@ -182,7 +182,9 @@ public class TeacherOpenCourseScheduleSessionService extends CoreBaseService<Tea
}
public List<TeacherOpenCourseScheduleSession> getValuesByQuery (TeacherOpenCourseScheduleSessionQuery teacherOpenCourseScheduleSessionQuery){
return teacherOpenCourseScheduleSessionDao.getValuesByQuery(teacherOpenCourseScheduleSessionQuery);
List<TeacherOpenCourseScheduleSession> valuesByQuery = teacherOpenCourseScheduleSessionDao.getValuesByQuery(teacherOpenCourseScheduleSessionQuery);
queryListAfter(valuesByQuery);
return valuesByQuery;
}
public TeacherOpenCourseScheduleSession getInfo (Long teacherOpenCourseScheduleSessionId){

Loading…
Cancel
Save