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接口,其他接口继承该接口即可

这是一个例子,自己扩展时可以参考

项目地址 : https://github.com/abel533/Mapper

Author:
liuzh