package com.lunhan.water.common.wechat.req;
|
|
public class WeiXinRefund_Amount {
|
/**
|
* 【退款金额】 退款金额,单位为分,只能为整数,不能超过原订单支付金额
|
*/
|
private Integer refund;
|
|
/**
|
* 【原订单金额】 原支付交易的订单总金额,单位为分,只能为整数
|
*/
|
private Integer total;
|
|
/**
|
* 【退款币种】 符合ISO 4217标准的三位字母代码,目前只支持人民币:CNY
|
*/
|
private String currency;
|
|
public Integer getRefund() {
|
return refund;
|
}
|
|
public void setRefund(Integer refund) {
|
this.refund = refund;
|
}
|
|
public Integer getTotal() {
|
return total;
|
}
|
|
public void setTotal(Integer total) {
|
this.total = total;
|
}
|
|
public String getCurrency() {
|
return currency;
|
}
|
|
public void setCurrency(String currency) {
|
this.currency = currency;
|
}
|
}
|