Package tk.mybatis.mapper.common
Interface BaseMapper<T>
- Type Parameters:
T- 不能为空
- All Superinterfaces:
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>
- All Known Subinterfaces:
Mapper<T>
public interface BaseMapper<T>
extends BaseSelectMapper<T>, BaseInsertMapper<T>, BaseUpdateMapper<T>, BaseDeleteMapper<T>
通用Mapper接口,其他接口继承该接口即可
这是一个例子,自己扩展时可以参考
- Author:
- liuzh
-
Method Summary
Methods inherited from interface tk.mybatis.mapper.common.base.delete.DeleteByPrimaryKeyMapper
deleteByPrimaryKeyMethods inherited from interface tk.mybatis.mapper.common.base.delete.DeleteMapper
deleteMethods inherited from interface tk.mybatis.mapper.common.base.select.ExistsWithPrimaryKeyMapper
existsWithPrimaryKeyMethods inherited from interface tk.mybatis.mapper.common.base.insert.InsertMapper
insertMethods inherited from interface tk.mybatis.mapper.common.base.insert.InsertSelectiveMapper
insertSelectiveMethods inherited from interface tk.mybatis.mapper.common.base.select.SelectAllMapper
selectAllMethods inherited from interface tk.mybatis.mapper.common.base.select.SelectByPrimaryKeyMapper
selectByPrimaryKeyMethods inherited from interface tk.mybatis.mapper.common.base.select.SelectCountMapper
selectCountMethods inherited from interface tk.mybatis.mapper.common.base.select.SelectMapper
selectMethods inherited from interface tk.mybatis.mapper.common.base.select.SelectOneMapper
selectOneMethods inherited from interface tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeyMapper
updateByPrimaryKeyMethods inherited from interface tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeySelectiveMapper
updateByPrimaryKeySelective