Interface DeleteByPrimaryKeyMapper<T>

Type Parameters:
T - 不能为空
All Known Subinterfaces:
BaseDeleteMapper<T>, BaseMapper<T>, Mapper<T>

public interface DeleteByPrimaryKeyMapper<T>
通用Mapper接口,删除
Author:
liuzh
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    根据主键字段进行删除,方法参数必须包含完整的主键属性
  • Method Details

    • deleteByPrimaryKey

      @DeleteProvider(type=BaseDeleteProvider.class, method="dynamicSQL") int deleteByPrimaryKey(Object key)
      根据主键字段进行删除,方法参数必须包含完整的主键属性
      Parameters:
      key -
      Returns: