File History: src/main/java/com/paymentlink/repository/PaymentLinkRepository.java
File Content at Commit e6d1548
| 1 | package com.paymentlink.repository; |
| 2 | |
| 3 | import com.paymentlink.model.entity.PaymentLink; |
| 4 | import org.springframework.data.jpa.repository.JpaRepository; |
| 5 | import org.springframework.data.jpa.repository.Query; |
| 6 | import org.springframework.data.repository.query.Param; |
| 7 | import org.springframework.stereotype.Repository; |
| 8 | |
| 9 | import java.util.List; |
| 10 | import java.util.Optional; |
| 11 | |
| 12 | |
| 13 | public interface PaymentLinkRepository extends JpaRepository<PaymentLink, Long> { |
| 14 | |
| 15 | Optional<PaymentLink> findByLinkId(String linkId); |
| 16 | |
| 17 | |
| 18 | Optional<PaymentLink> findByLinkIdWithItems( String linkId); |
| 19 | |
| 20 | List<PaymentLink> findByStatus(String status); |
| 21 | |
| 22 | Optional<PaymentLink> findByStripePaymentIntentId(String stripePaymentIntentId); |
| 23 | } |
| 24 | |
| 25 |
Commits
| Commit | Author | Date | Message | File SHA | Actions |
|---|---|---|---|---|---|
f0438c2 |
<f69e50@finnacloud.com> 1766443042 +0300 | 12/22/2025, 10:37:22 PM | increment once more | 92b4ebf |
View |
188fc92 |
<f69e50@finnacloud.com> 1766442998 +0300 | 12/22/2025, 10:36:38 PM | increment | 92b4ebf |
View |
4617f76 |
<f69e50@finnacloud.com> 1766442953 +0300 | 12/22/2025, 10:35:53 PM | rename branch from main to master oops | 92b4ebf |
View |
e6d1548 |
<f69e50@finnacloud.com> 1766442769 +0300 | 12/22/2025, 10:32:49 PM | add initial test workflow file | 92b4ebf |
Hide |
9c24ca4 |
<f69e50@finnacloud.com> 1766442705 +0300 | 12/22/2025, 10:31:45 PM | add CI configuration and test script for Jenkins build | 92b4ebf |
View |
690c1f6 |
<f69e50@finnacloud.com> 1766368110 +0300 | 12/22/2025, 1:48:30 AM | initialize backend structure with controllers, DTOs, and configuration files | 92b4ebf |
View |