Interface InsertSelectiveMapper<T>

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

public interface InsertSelectiveMapper<T>
通用Mapper接口,插入
Author:
liuzh
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    保存一个实体,null的属性不会保存,会使用数据库默认值
  • Method Details

    • insertSelective

      @InsertProvider(type=BaseInsertProvider.class, method="dynamicSQL") int insertSelective(T record)
      保存一个实体,null的属性不会保存,会使用数据库默认值
      Parameters:
      record -
      Returns: