All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.edurt.datacap.service.repository.UserLogRepository Maven / Gradle / Ivy

The newest version!
package io.edurt.datacap.service.repository;

import io.edurt.datacap.service.entity.UserEntity;
import io.edurt.datacap.service.entity.UserLogEntity;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.repository.PagingAndSortingRepository;

public interface UserLogRepository
        extends PagingAndSortingRepository
{
    Page findAllByUserOrderByCreateTimeDesc(UserEntity user, Pageable pageable);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy