接口 DeleteByIdListMapper<T,PK>
-
- 类型参数:
T- 不能为空
- 所有已知子接口:
IdListMapper<T,PK>
public interface DeleteByIdListMapper<T,PK>通用Mapper接口,根据idList删除- 作者:
- liuzh
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 intdeleteByIdList(List<PK> idList)根据主键字符串进行删除,类中只有存在一个带有@Id注解的字段
-
-
-
方法详细资料
-
deleteByIdList
@DeleteProvider(type=IdListProvider.class, method="dynamicSQL") int deleteByIdList(@Param("idList") List<PK> idList)
根据主键字符串进行删除,类中只有存在一个带有@Id注解的字段- 参数:
idList-- 返回:
-
-