|
@@ -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);
|