com.github.dreamroute.mybatis.pro.sdk.DeleteMapper Maven / Gradle / Ivy
The newest version!
package com.github.dreamroute.mybatis.pro.sdk;
import java.util.List;
/**
* 删除接口
*
* @author w.dehai
*/
public interface DeleteMapper {
/**
* 根据id删除
*/
int deleteById(ID id);
/**
* 根据id批量删除
*/
int deleteByIds(List ids);
}