接口 BaseMapper<T>
-
- 类型参数:
T- 不能为空
- 所有超级接口:
BaseDeleteMapper<T>,BaseInsertMapper<T>,BaseSelectMapper<T>,BaseUpdateMapper<T>,DeleteByPrimaryKeyMapper<T>,DeleteMapper<T>,ExistsWithPrimaryKeyMapper<T>,InsertMapper<T>,InsertSelectiveMapper<T>,SelectAllMapper<T>,SelectByPrimaryKeyMapper<T>,SelectCountMapper<T>,SelectMapper<T>,SelectOneMapper<T>,UpdateByPrimaryKeyMapper<T>,UpdateByPrimaryKeySelectiveMapper<T>
- 所有已知子接口:
Mapper<T>
public interface BaseMapper<T> extends BaseSelectMapper<T>, BaseInsertMapper<T>, BaseUpdateMapper<T>, BaseDeleteMapper<T>
通用Mapper接口,其他接口继承该接口即可这是一个例子,自己扩展时可以参考
- 作者:
- liuzh
-
-
方法概要
-
从接口继承的方法 tk.mybatis.mapper.common.base.delete.DeleteByPrimaryKeyMapper
deleteByPrimaryKey
-
从接口继承的方法 tk.mybatis.mapper.common.base.delete.DeleteMapper
delete
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.ExistsWithPrimaryKeyMapper
existsWithPrimaryKey
-
从接口继承的方法 tk.mybatis.mapper.common.base.insert.InsertMapper
insert
-
从接口继承的方法 tk.mybatis.mapper.common.base.insert.InsertSelectiveMapper
insertSelective
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectAllMapper
selectAll
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectByPrimaryKeyMapper
selectByPrimaryKey
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectCountMapper
selectCount
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectMapper
select
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectOneMapper
selectOne
-
从接口继承的方法 tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeyMapper
updateByPrimaryKey
-
从接口继承的方法 tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeySelectiveMapper
updateByPrimaryKeySelective
-
-