接口 CrudMapper<T>

所有超级接口:
com.baomidou.mybatisplus.core.mapper.BaseMapper<T>, com.baomidou.mybatisplus.core.mapper.Mapper<T>

public interface CrudMapper<T> extends com.baomidou.mybatisplus.core.mapper.BaseMapper<T>
  • 方法概要

    修饰符和类型
    方法
    说明
     
    int
    只有逻辑删除的表才会添加这个方法。

    从接口继承的方法 com.baomidou.mybatisplus.core.mapper.BaseMapper

    delete, deleteBatchIds, deleteById, deleteById, deleteByMap, exists, insert, selectBatchIds, selectById, selectByMap, selectCount, selectList, selectMaps, selectMapsPage, selectObjs, selectOne, selectPage, update, updateById
  • 方法详细资料

    • insertBatch

      Integer insertBatch(@Param("list") Collection<T> t)
    • recoverByIds

      int recoverByIds(@Param("ids") Collection<?> ids)
      只有逻辑删除的表才会添加这个方法。这个控制逻辑在@MiniSqlInjector中。
      参数:
      ids -
      返回: