接口 IServiceBak<T>


public interface IServiceBak<T>
  • 方法详细资料

    • findListPage

      top.binfast.common.core.bean.dto.PageDTO<T> findListPage(top.binfast.common.core.bean.params.BasePageSortParam pageParam)
    • findListPage

      <U> top.binfast.common.core.bean.dto.PageDTO findListPage(top.binfast.common.core.bean.params.BasePageSortParam pageParam, java.util.function.Function<List<T>,List<U>> transfer)
    • findCustomListPage

      <U> top.binfast.common.core.bean.dto.PageDTO<U> findCustomListPage(top.binfast.common.core.bean.params.BasePageSortParam pageParam, String sqlId, Class<U> tClass)
    • listAll

      List<T> listAll()
    • getOne

      top.binfast.common.core.bean.dto.DetailDTO<T> getOne(Long id)
    • saveOne

      T saveOne(T entity)
    • saveOneDirect

      T saveOneDirect(T entity)
    • deleteOne

      Long deleteOne(Long id)
    • getById

      T getById(Long id)
    • saveAll

      Boolean saveAll(List<T> list)
    • insertBatchDirect

      int insertBatchDirect(List<T> list)
    • updateBatchDirect

      int updateBatchDirect(List<T> list)
    • listByIds

      List<T> listByIds(Collection<? extends Serializable> idList)
    • setBaseInfo

      <K extends top.binfast.common.mybatis.bean.model.BaseModel> K setBaseInfo(K baseModel)
    • isNew

      boolean isNew(Long id)