| 1234567891011121314151617181920 |
- package com.ruoyi.app.omgpay;
- import java.math.BigDecimal;
- import java.util.Date;
- /** Verified gateway facts shared by callback settlement and query compensation. */
- public record OmgPaymentGatewayFacts(
- OmgPaymentFactSource source,
- String merchantId,
- String merchantTradeNo,
- int amount,
- int resultCode,
- String resultMessage,
- String tradeNo,
- String paymentType,
- Date paymentDate,
- Date tradeDate,
- BigDecimal paymentTypeChargeFee,
- Integer simulatePaid) {
- }
|