This commit is contained in:
2023-09-26 11:12:54 +08:00
parent 4cc8059355
commit 7897dd6876
9 changed files with 69 additions and 121 deletions

View File

@@ -0,0 +1,17 @@
package com.jsowell.adapay.vo;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
/**
* 支付信息对象
* order_pay_record表中的deduction_record
* json数组 字符串
*/
@Getter
@Setter
public class DeductionRecord {
List<PaymentInfo> list;
}

View File

@@ -0,0 +1,14 @@
package com.jsowell.adapay.vo;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class PaymentInfo {
// 支付id
private String paymentId;
// 金额
private String amount;
}