Package net.risesoft.y9public.repository
Interface Y9logAccessLogRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Y9logAccessLog,String>,org.springframework.data.jpa.repository.JpaRepository<Y9logAccessLog,String>,org.springframework.data.jpa.repository.JpaSpecificationExecutor<Y9logAccessLog>,org.springframework.data.repository.PagingAndSortingRepository<Y9logAccessLog,String>,org.springframework.data.repository.query.QueryByExampleExecutor<Y9logAccessLog>,org.springframework.data.repository.Repository<Y9logAccessLog,String>
@Transactional(value="rsPublicTransactionManager", readOnly=true) public interface Y9logAccessLogRepository extends org.springframework.data.jpa.repository.JpaRepository<Y9logAccessLog,String>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<Y9logAccessLog>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcountByMethodNameAndLogTimeBetween(String methodName, Date logTimeStart, Date logTimeEnd)longcountBySuccessAndLogTimeBetweenAndUserNameNotNull(String success, Date logTimeStart, Date logTimeEnd)longcountByTenantIdAndSuccessAndLogTimeBetweenAndUserNameNotNull(String tenantId, String success, Date logTimeStart, Date logTimeEnd)org.springframework.data.domain.Page<Y9logAccessLog>findByOperateType(String operateType, org.springframework.data.domain.Pageable pageable)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, findAll, findAll, findAll, findOne
-
-
-
-
Method Detail
-
countByMethodNameAndLogTimeBetween
long countByMethodNameAndLogTimeBetween(String methodName, Date logTimeStart, Date logTimeEnd)
-
countBySuccessAndLogTimeBetweenAndUserNameNotNull
long countBySuccessAndLogTimeBetweenAndUserNameNotNull(String success, Date logTimeStart, Date logTimeEnd)
-
countByTenantIdAndSuccessAndLogTimeBetweenAndUserNameNotNull
long countByTenantIdAndSuccessAndLogTimeBetweenAndUserNameNotNull(String tenantId, String success, Date logTimeStart, Date logTimeEnd)
-
findByOperateType
org.springframework.data.domain.Page<Y9logAccessLog> findByOperateType(String operateType, org.springframework.data.domain.Pageable pageable)
-
-