接口 DeleteByIdsMapper<T>
-
- 类型参数:
T- 不能为空
- 所有已知子接口:
IdsMapper<T>
public interface DeleteByIdsMapper<T>通用Mapper接口,根据ids删除- 作者:
- liuzh
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 intdeleteByIds(String ids)根据主键字符串进行删除,类中只有存在一个带有@Id注解的字段
-
-
-
方法详细资料
-
deleteByIds
@DeleteProvider(type=IdsProvider.class, method="dynamicSQL") int deleteByIds(String ids)
根据主键字符串进行删除,类中只有存在一个带有@Id注解的字段- 参数:
ids- 如 "1,2,3,4"- 返回:
-
-