liujc 2 years ago
parent
commit
8a70b43ef4

+ 1 - 1
mec-biz/src/main/java/com/ym/mec/biz/dal/mapper/CourseSchedulePlusMapper.java

@@ -11,7 +11,7 @@ import java.util.List;
 
 
 @Repository
-public interface CourseSchedulePlusMapper extends BaseMapper<CourseSchedule> {
+public interface CourseSchedulePlusMapper extends BaseMapper<Object> {
 
     List<TeachingPointWrapper.CourseTeachingPoint> teachingPointCourse(@Param("page") IPage<TeachingPointWrapper.CourseTeachingPoint> page,
                                                                        @Param("param") TeachingPointWrapper.TeachingPointQuery queryInfo);

+ 3 - 1
mec-biz/src/main/java/com/ym/mec/biz/dal/mapper/StudentPlusMapper.java

@@ -3,14 +3,16 @@ package com.ym.mec.biz.dal.mapper;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.ym.mec.biz.dal.entity.Student;
+import com.ym.mec.biz.dal.entity.StudentNew;
 import com.ym.mec.biz.dal.wrapper.StudentWrapper;
 import org.apache.ibatis.annotations.Param;
 import org.springframework.stereotype.Repository;
 
 import java.util.List;
+import java.util.Objects;
 
 @Repository
-public interface StudentPlusMapper extends BaseMapper<Student> {
+public interface StudentPlusMapper extends BaseMapper<Object> {
 
 
     List<StudentWrapper.StudentList> userPage(@Param("page") IPage<StudentWrapper.StudentList> page, @Param("param") StudentWrapper.StudentQuery queryInfo);