| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.izouma.nineth.repo;
- import com.izouma.nineth.domain.Order;
- import com.izouma.nineth.enums.OrderStatus;
- 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.time.LocalDateTime;
- import java.util.Collection;
- import java.util.List;
- import java.util.Optional;
- public interface OrderRepo extends JpaRepository<Order, Long>, JpaSpecificationExecutor<Order> {
- @Query("update Order t set t.del = true where t.id = ?1")
- @Modifying
- @Transactional
- void softDelete(Long id);
- Optional<Order> findByIdAndDelFalse(Long id);
- List<Order> findByStatusAndCreatedAtBeforeAndDelFalse(OrderStatus status, LocalDateTime time);
- List<Order> findByCollectionId(Long collectionId);
- List<Order> findByCollectionIdIn(Iterable<Long> collectionId);
- int countByUserIdAndCollectionIdAndStatusIn(Long userId, Long collectionId, Iterable<OrderStatus> orderStatuses);
- int countByUserIdAndCountIdAndStatusIn(Long userId, String countId, Iterable<OrderStatus> orderStatuses);
- List<Order> findByStatus(OrderStatus orderStatus);
- @Query("select count(o) from Order o join Collection c on o.collectionId = c.id " +
- "where c.minterId = ?1 and c.source = 'OFFICIAL' and o.status <> 'NOT_PAID' and o.status <> 'CANCELLED'")
- long countSales(Long userId);
- Order findByTransactionId(String txId);
- long countAllByPayTimeAfter(LocalDateTime payTime);
- @Query("select id from Order where userId = ?1 and opened = false")
- List<Long> findAllByUserIdAndOpenedFalse(Long userId);
- int countByUserIdAndCollectionIdAndVipTrueAndStatusIn(Long userId, Long collectionId, Collection<OrderStatus> status);
- }
|