Uses of Class
com.imyeyu.spring.bean.Page
Packages that use Page
Package
Description
基本 MyBatis 映射
基本服务
其他工具
-
Uses of Page in com.imyeyu.spring.mapper
Methods in com.imyeyu.spring.mapper with parameters of type PageModifier and TypeMethodDescriptionlongBaseMapper.countByPage(Page<T> page) 根据 Page 对象统计数据量longDynamicTableMapper.countByPage(String tableName, Page<T> page) 根据 Page 对象统计数据量BaseMapper.selectByPage(Page<T> page) 根据 Page 对象查询数据列表DynamicTableMapper.selectByPage(String tableName, Page<T> page) 根据 Page 对象查询数据列表default PageResult<T> BaseMapper.selectPageResult(Page<T> page) 分页查询default PageResult<T> DynamicTableMapper.selectPageResult(String tableName, Page<T> page) 分页查询 -
Uses of Page in com.imyeyu.spring.service
Methods in com.imyeyu.spring.service with parameters of type PageModifier and TypeMethodDescription分页查询 -
Uses of Page in com.imyeyu.spring.util
Methods in com.imyeyu.spring.util with parameters of type PageModifier and TypeMethodDescriptionprotected voidBaseSQLProvider.appendOrderBy(StringBuilder sql, BaseSQLProvider.EntityMeta meta, Page<?> page) 添加排序子句protected voidBaseSQLProvider.appendPageConditions(StringBuilder sql, Page<?> page) 添加 Page 查询条件(精准查询和模糊查询)protected StringBaseSQLProvider.buildCountByPageSQL(BaseSQLProvider.EntityMeta meta, String tableName, Page<?> page) 构建分页统计 SQLprotected StringBaseSQLProvider.buildSelectByPageSQL(BaseSQLProvider.EntityMeta meta, String tableName, Page<?> page, String offset, String limit) 构建分页查询 SQLDynamicTableSQLProvider.countByPage(org.apache.ibatis.builder.annotation.ProviderContext context, String tableName, Page<?> page) 根据 Page 对象统计数据量SQLProvider.countByPage(org.apache.ibatis.builder.annotation.ProviderContext context, Page<?> page) 根据 Page 对象统计数据量DynamicTableSQLProvider.selectByPage(org.apache.ibatis.builder.annotation.ProviderContext context, String tableName, Page<?> page) 根据 Page 对象查询数据列表SQLProvider.selectByPage(org.apache.ibatis.builder.annotation.ProviderContext context, Page<?> page) 根据 Page 对象查询数据列表