接口 BaseMapper<T,E,PK extends Serializable>
-
public interface BaseMapper<T,E,PK extends Serializable>
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 longcountByExample(E example)intdeleteByExample(E example)intdeleteByPrimaryKey(PK pk)voidinsert(T t)voidinsertList(List<T> list)intinsertSelective(T record)List<T>selectAll()List<T>selectByExample(E example)TselectByPrimaryKey(PK pk)intupdateByExample(T record, E example)intupdateByExampleSelective(T record, E example)intupdateByPrimaryKey(T record)intupdateByPrimaryKeySelective(T record)
-
-
-
方法详细资料
-
insert
void insert(T t)
-
insertSelective
int insertSelective(T record)
-
deleteByPrimaryKey
int deleteByPrimaryKey(PK pk)
-
deleteByExample
int deleteByExample(E example)
-
countByExample
long countByExample(E example)
-
updateByPrimaryKey
int updateByPrimaryKey(T record)
-
updateByPrimaryKeySelective
int updateByPrimaryKeySelective(T record)
-
-