Browse Source

学生报到计划

dzx 1 month ago
parent
commit
e61f3a24f2

+ 2 - 1
src/main/java/com/xjrsoft/module/student/mapper/BaseStudentMapper.java

@@ -9,6 +9,7 @@ import com.xjrsoft.module.student.vo.BaseStudentUserPageVo;
 import com.xjrsoft.module.student.vo.StudentInfoVo;
 import com.xjrsoft.module.student.vo.StudentPersonalInfoVo;
 import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
@@ -35,5 +36,5 @@ public interface BaseStudentMapper extends MPJBaseMapper<BaseStudent> {
 
     Page<BaseStudentUserPageVo> getStudentPage(Page<BaseStudentUserPageVo> page, BaseStudentUserPageDto dto);
 
-    List<BaseStudentUserPageVo> getStudentList(BaseStudentUserPageDto dto);
+    List<BaseStudentUserPageVo> getStudentList(@Param("dto") BaseStudentUserPageDto dto);
 }