接口 Mapper<T>
-
- 类型参数:
T- 不能为空
- 所有超级接口:
BaseDeleteMapper<T>,BaseInsertMapper<T>,BaseMapper<T>,BaseSelectMapper<T>,BaseUpdateMapper<T>,DeleteByExampleMapper<T>,DeleteByPrimaryKeyMapper<T>,DeleteMapper<T>,ExampleMapper<T>,ExistsWithPrimaryKeyMapper<T>,InsertMapper<T>,InsertSelectiveMapper<T>,Marker,RowBoundsMapper<T>,SelectAllMapper<T>,SelectByExampleMapper<T>,SelectByExampleRowBoundsMapper<T>,SelectByPrimaryKeyMapper<T>,SelectCountByExampleMapper<T>,SelectCountMapper<T>,SelectMapper<T>,SelectOneByExampleMapper<T>,SelectOneMapper<T>,SelectRowBoundsMapper<T>,UpdateByExampleMapper<T>,UpdateByExampleSelectiveMapper<T>,UpdateByPrimaryKeyMapper<T>,UpdateByPrimaryKeySelectiveMapper<T>
public interface Mapper<T> extends BaseMapper<T>, ExampleMapper<T>, RowBoundsMapper<T>, Marker
通用Mapper接口,其他接口继承该接口即可这是一个例子,自己扩展时可以参考
- 作者:
- liuzh
-
-
方法概要
-
从接口继承的方法 tk.mybatis.mapper.common.example.DeleteByExampleMapper
deleteByExample
-
从接口继承的方法 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.example.SelectByExampleMapper
selectByExample
-
从接口继承的方法 tk.mybatis.mapper.common.rowbounds.SelectByExampleRowBoundsMapper
selectByExampleAndRowBounds
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectByPrimaryKeyMapper
selectByPrimaryKey
-
从接口继承的方法 tk.mybatis.mapper.common.example.SelectCountByExampleMapper
selectCountByExample
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectCountMapper
selectCount
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectMapper
select
-
从接口继承的方法 tk.mybatis.mapper.common.example.SelectOneByExampleMapper
selectOneByExample
-
从接口继承的方法 tk.mybatis.mapper.common.base.select.SelectOneMapper
selectOne
-
从接口继承的方法 tk.mybatis.mapper.common.rowbounds.SelectRowBoundsMapper
selectByRowBounds
-
从接口继承的方法 tk.mybatis.mapper.common.example.UpdateByExampleMapper
updateByExample
-
从接口继承的方法 tk.mybatis.mapper.common.example.UpdateByExampleSelectiveMapper
updateByExampleSelective
-
从接口继承的方法 tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeyMapper
updateByPrimaryKey
-
从接口继承的方法 tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeySelectiveMapper
updateByPrimaryKeySelective
-
-