com.riversoft.weixin.pay.payment.bean.RefundResponse Maven / Gradle / Ivy
The newest version!
package com.riversoft.weixin.pay.payment.bean;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.riversoft.weixin.pay.base.BaseResponse;
/**
* @author borball on 5/17/2016.
*/
public class RefundResponse extends BaseResponse {
@JsonProperty("transaction_id")
private String transactionId;
@JsonProperty("out_trade_no")
private String tradeNumber;
@JsonProperty("out_refund_no")
private String refundNumber;
@JsonProperty("refund_id")
private String refundId;
@JsonProperty("refund_channel")
private String refundChannel;
@JsonProperty("refund_fee")
private int refundFee;
@JsonProperty("total_fee")
private int totalFee;
@JsonProperty("settlement_total_fee")
private int settlementTotalFee;
@JsonProperty("fee_type")
private String feeType;
@JsonProperty("cash_fee")
private int cashFee;
@JsonProperty("cash_refund_fee")
private int cashRefundFee;
//TODO others
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getTradeNumber() {
return tradeNumber;
}
public void setTradeNumber(String tradeNumber) {
this.tradeNumber = tradeNumber;
}
public String getRefundNumber() {
return refundNumber;
}
public void setRefundNumber(String refundNumber) {
this.refundNumber = refundNumber;
}
public String getRefundId() {
return refundId;
}
public void setRefundId(String refundId) {
this.refundId = refundId;
}
public String getRefundChannel() {
return refundChannel;
}
public void setRefundChannel(String refundChannel) {
this.refundChannel = refundChannel;
}
public int getRefundFee() {
return refundFee;
}
public void setRefundFee(int refundFee) {
this.refundFee = refundFee;
}
public int getTotalFee() {
return totalFee;
}
public void setTotalFee(int totalFee) {
this.totalFee = totalFee;
}
public int getSettlementTotalFee() {
return settlementTotalFee;
}
public void setSettlementTotalFee(int settlementTotalFee) {
this.settlementTotalFee = settlementTotalFee;
}
public String getFeeType() {
return feeType;
}
public void setFeeType(String feeType) {
this.feeType = feeType;
}
public int getCashFee() {
return cashFee;
}
public void setCashFee(int cashFee) {
this.cashFee = cashFee;
}
public int getCashRefundFee() {
return cashRefundFee;
}
public void setCashRefundFee(int cashRefundFee) {
this.cashRefundFee = cashRefundFee;
}
}