mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
订单分账逻辑
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.jsowell.adapay.operation;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 支付确认操作对象
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class PaymentConfirmOperation extends AdapayOperationInfo{
|
||||
private String paymentId;
|
||||
|
||||
private BigDecimal confirmAmt;
|
||||
|
||||
private String orderCode;
|
||||
}
|
||||
Reference in New Issue
Block a user