MyBatis¶
分页¶
/**
* @param page pagination argument must be the first one
*/
IPage<UserVo> selectUserPage(IPage<?> page, Integer state);
/**
* @param page pagination argument must be the first one and implement {@link IPage}
*/
MyPage selectUserPage(MyPage page);
/**
* @return list of objects
*/
List<UserVo> selectUserPage(IPage<UserVo> page, Integer state);
Note
分页参数必须是第一个参数,并且必须实现IPage
接口。