| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.izouma.nineth.repo;
- import com.izouma.nineth.TokenHistory;
- import org.springframework.data.domain.Page;
- import org.springframework.data.domain.Pageable;
- import org.springframework.data.jpa.repository.JpaRepository;
- import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
- import org.springframework.data.jpa.repository.Modifying;
- import org.springframework.data.jpa.repository.Query;
- import javax.transaction.Transactional;
- import java.util.Collection;
- import java.util.List;
- public interface TokenHistoryRepo extends JpaRepository<TokenHistory, Long>, JpaSpecificationExecutor<TokenHistory> {
- List<TokenHistory> findByTokenIdOrderByCreatedAtDesc(String tokenId);
- @Query("select t from TokenHistory t where t.toUserId = ?1 or t.fromUserId = ?1 order by t.createdAt desc")
- Page<TokenHistory> userHistory(Long userId, Pageable pageable);
- @Query("select t from TokenHistory t where t.toUserId = ?2 or t.fromUserId = ?1 order by t.createdAt desc")
- Page<TokenHistory> userHistoryTo(Long userId, Long toUserId, Pageable pageable);
- @Query("select t from TokenHistory t where t.toUserId = ?1 or t.fromUserId = ?2 order by t.createdAt desc")
- Page<TokenHistory> userHistoryFrom(Long userId, Long fromUserId, Pageable pageable);
- @Query("select t from TokenHistory t where t.toUserId = ?1 or t.fromUserId = ?1 order by t.createdAt desc")
- List<TokenHistory> userHistory(Long userId);
- @Query("select t from TokenHistory t where t.toUserId in ?1")
- List<TokenHistory> userBuy(Collection<Long> userId);
- @Transactional
- @Modifying
- int deleteByTokenId(String tokenId);
- @Query("select t from TokenHistory t where t.fromUserId = t.toUserId")
- List<TokenHistory> findError();
- List<TokenHistory> findByOperationAndPriceNull(String oper);
- }
|