mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
update
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user