接口 IBaseMapper<T>
- 类型参数:
T-
- 所有超级接口:
com.baomidou.mybatisplus.core.mapper.BaseMapper<T>,com.baomidou.mybatisplus.core.mapper.Mapper<T>
public interface IBaseMapper<T>
extends com.baomidou.mybatisplus.core.mapper.BaseMapper<T>
自定义基础Mapper继承BaseMapper
- 作者:
- 心心
-
方法概要
修饰符和类型方法说明execNoResultSql(Map<String, Object> map) findBySql2Entity(Map<String, Object> map) findBySql2Map(Map<String, Object> map) intgetCountBySql(Map<String, Object> map) getUniqueResultBySql(Map<String, Object> map) pageBySql2Entity(Map<String, Object> map) pageBySql2Map(Map<String, Object> map) SelectBySql(Map<String, Object> map) 根据sql查询 需调用指定方法转换为相应的map后调用从接口继承的方法 com.baomidou.mybatisplus.core.mapper.BaseMapper
delete, deleteBatchIds, deleteById, deleteByMap, insert, selectBatchIds, selectById, selectByMap, selectCount, selectList, selectMaps, selectMapsPage, selectObjs, selectOne, selectPage, update, updateById
-
方法详细资料
-
SelectBySql
根据sql查询 需调用指定方法转换为相应的map后调用- 参数:
map-- 返回:
-
query
-
getCountBySql
-
findBySql2Map
-
findBySql2Entity
-
findBySql
-
execNoResultSql
-
getUniqueResultBySql
-
pageBySql2Map
-
pageBySql2Entity
-