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