update 订单逻辑改造工厂模式

This commit is contained in:
2023-09-01 17:29:59 +08:00
parent c2be91227b
commit 45af011278
4 changed files with 139 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
package com.jsowell.adapay.operation;
import lombok.*;
import java.math.BigDecimal;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class PaymentRefundOperation extends AdapayOperationInfo{
private String paymentId;
private BigDecimal refundAmt;
private String wechatAppId;
private String memberId;
private String scenarioType;
private String orderCode;
}