|
|
@@ -12,7 +12,7 @@ import org.springframework.data.jpa.repository.Query; |
|
|
|
public interface IssueOrderRefundRepo extends AbstractJpaRepo<IssueOrderRefund, String>{ |
|
|
|
|
|
|
|
|
|
|
|
@Query(value = " from IssueOrderRefund where status = ?1 and operateType = ?2 order by updateTime desc", |
|
|
|
@Query(value = " from IssueOrderRefund where status = ?1 and operateType = ?2 order by updateTime asc", |
|
|
|
countQuery = "select count(*) from IssueOrderRefund where status = ?1 and operateType = ?2") |
|
|
|
Page<IssueOrderRefund> findByStatusAndOperateType(RefundStatus status, RefundOperateType operateType, Pageable pageable); |
|
|
|
} |