类 BaseSelectProvider
- java.lang.Object
-
- tk.mybatis.mapper.mapperhelper.MapperTemplate
-
- tk.mybatis.mapper.provider.base.BaseSelectProvider
-
public class BaseSelectProvider extends tk.mybatis.mapper.mapperhelper.MapperTemplateBaseSelectProvider实现类,基础方法实现类- 作者:
- liuzh
-
-
构造器概要
构造器 构造器 说明 BaseSelectProvider(Class<?> mapperClass, tk.mybatis.mapper.mapperhelper.MapperHelper mapperHelper)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringexistsWithPrimaryKey(org.apache.ibatis.mapping.MappedStatement ms)根据主键查询总数Stringselect(org.apache.ibatis.mapping.MappedStatement ms)查询StringselectAll(org.apache.ibatis.mapping.MappedStatement ms)查询全部结果StringselectByPrimaryKey(org.apache.ibatis.mapping.MappedStatement ms)根据主键进行查询StringselectByRowBounds(org.apache.ibatis.mapping.MappedStatement ms)查询StringselectCount(org.apache.ibatis.mapping.MappedStatement ms)查询总数StringselectOne(org.apache.ibatis.mapping.MappedStatement ms)查询
-
-
-
构造器详细资料
-
BaseSelectProvider
public BaseSelectProvider(Class<?> mapperClass, tk.mybatis.mapper.mapperhelper.MapperHelper mapperHelper)
-
-
方法详细资料
-
selectOne
public String selectOne(org.apache.ibatis.mapping.MappedStatement ms)
查询- 参数:
ms-- 返回:
-
select
public String select(org.apache.ibatis.mapping.MappedStatement ms)
查询- 参数:
ms-- 返回:
-
selectByRowBounds
public String selectByRowBounds(org.apache.ibatis.mapping.MappedStatement ms)
查询- 参数:
ms-- 返回:
-
selectByPrimaryKey
public String selectByPrimaryKey(org.apache.ibatis.mapping.MappedStatement ms)
根据主键进行查询- 参数:
ms-
-
selectCount
public String selectCount(org.apache.ibatis.mapping.MappedStatement ms)
查询总数- 参数:
ms-- 返回:
-
existsWithPrimaryKey
public String existsWithPrimaryKey(org.apache.ibatis.mapping.MappedStatement ms)
根据主键查询总数- 参数:
ms-- 返回:
-
selectAll
public String selectAll(org.apache.ibatis.mapping.MappedStatement ms)
查询全部结果- 参数:
ms-- 返回:
-
-