Skip to content

Commit

Permalink
收付通合并支付相关接口对接实现(wechatpay-apiv3#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
liulipeng committed Jun 27, 2024
1 parent 0f2af26 commit 7ab7bea
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,38 @@ public class TransactionAmount {
@SerializedName("payer_currency")
private String payerCurrency;

public Integer getTotalAmount() {
return totalAmount;
}

public void setTotalAmount(Integer totalAmount) {
this.totalAmount = totalAmount;
}

public String getCurrency() {
return currency;
}

public void setCurrency(String currency) {
this.currency = currency;
}

public Integer getPayerAmount() {
return payerAmount;
}

public void setPayerAmount(Integer payerAmount) {
this.payerAmount = payerAmount;
}

public String getPayerCurrency() {
return payerCurrency;
}

public void setPayerCurrency(String payerCurrency) {
this.payerCurrency = payerCurrency;
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
Expand Down

0 comments on commit 7ab7bea

Please sign in to comment.