Interface AlipayPaymentTransactionEntryDao
- All Known Implementing Classes:
DefaultAlipayPaymentTransactionEntryDao
public interface AlipayPaymentTransactionEntryDao
Looks up items related to
List<AlipayPaymentTransactionEntryModel>-
Method Summary
Modifier and TypeMethodDescriptionfindPaymentTransactionEntryByTypeAndStatus(PaymentTransactionType capture, TransactionStatus status, AlipayPaymentTransactionModel alipayPaymentTransaction) Gets the list of AlipayPaymentTransactionEntries by the given PaymentTransactionEntry type, transaction status and AlipayPaymentTransaction
-
Method Details
-
findPaymentTransactionEntryByTypeAndStatus
List<AlipayPaymentTransactionEntryModel> findPaymentTransactionEntryByTypeAndStatus(PaymentTransactionType capture, TransactionStatus status, AlipayPaymentTransactionModel alipayPaymentTransaction) Gets the list of AlipayPaymentTransactionEntries by the given PaymentTransactionEntry type, transaction status and AlipayPaymentTransaction- Parameters:
capture- PaymentTransactionEntry type: CAPTURE,CANCEL and so onstatus- PaymentTransactionStatus: ACCEPTED,REJECTED and so onalipayPaymentTransaction- Alipay Payment Transaction- Returns:
- list of AlipayPaymentTransactionEntries
-