Interface DeleteByPrimaryKeyMapper<T>

Type Parameters:
T - 泛型
All Known Subinterfaces:
BasicDeleteMapper<T>, BasicMapper<T>, Mapper<T>

public interface DeleteByPrimaryKeyMapper<T>
通用Mapper接口,删除
Since:
Java 17+
Author:
Kimi Liu
  • Method Summary

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

    • deleteByPrimaryKey

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