parent
c5f52f0821
commit
6839e3784f
@ -0,0 +1,95 @@ |
|||||||
|
package com.zbkj.common.vo; |
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
|
||||||
|
/** |
||||||
|
* 微信退款返回对象 |
||||||
|
* +---------------------------------------------------------------------- |
||||||
|
* | CRMEB [ CRMEB赋能开发者,助力企业发展 ] |
||||||
|
* +---------------------------------------------------------------------- |
||||||
|
* | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
|
||||||
|
* +---------------------------------------------------------------------- |
||||||
|
* | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 |
||||||
|
* +---------------------------------------------------------------------- |
||||||
|
* | Author: CRMEB Team <admin@crmeb.com> |
||||||
|
* +---------------------------------------------------------------------- |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = false) |
||||||
|
@Accessors(chain = true) |
||||||
|
@ApiModel(value="WxRefundResponseVo", description="微信退款返回对象") |
||||||
|
public class WxRefundQueryResponseVo { |
||||||
|
|
||||||
|
@JsonProperty("err_code") |
||||||
|
private String errCodeDes; |
||||||
|
@JsonProperty("transaction_id") |
||||||
|
private String transactionId; |
||||||
|
|
||||||
|
@JsonProperty("nonce_str") |
||||||
|
private String nonceStr; |
||||||
|
|
||||||
|
@JsonProperty("out_refund_no_0") |
||||||
|
private String outRefundNo0; |
||||||
|
|
||||||
|
@JsonProperty("refund_status_0") |
||||||
|
private String refundStatus0; |
||||||
|
|
||||||
|
@JsonProperty("cash_refund_fee_0") |
||||||
|
private String cashRefundFee0; |
||||||
|
|
||||||
|
@JsonProperty("sign") |
||||||
|
private String sign; |
||||||
|
|
||||||
|
@JsonProperty("refund_fee_0") |
||||||
|
private String refundFee0; |
||||||
|
|
||||||
|
@JsonProperty("return_msg") |
||||||
|
private String returnMsg; |
||||||
|
|
||||||
|
@JsonProperty("refund_recv_accout_0") |
||||||
|
private String refundRecvAccout0; |
||||||
|
|
||||||
|
@JsonProperty("mch_id") |
||||||
|
private String mchId; |
||||||
|
|
||||||
|
@JsonProperty("refund_success_time_0") |
||||||
|
private String refundSuccessTime0; |
||||||
|
|
||||||
|
@JsonProperty("cash_fee") |
||||||
|
private String cashFee; |
||||||
|
|
||||||
|
@JsonProperty("refund_id_0") |
||||||
|
private String refundId0; |
||||||
|
|
||||||
|
@JsonProperty("out_trade_no") |
||||||
|
private String outTradeNo; |
||||||
|
|
||||||
|
@JsonProperty("appid") |
||||||
|
private String appid; |
||||||
|
|
||||||
|
@JsonProperty("total_fee") |
||||||
|
private String totalFee; |
||||||
|
|
||||||
|
@JsonProperty("refund_fee") |
||||||
|
private String refundFee; |
||||||
|
|
||||||
|
@JsonProperty("result_code") |
||||||
|
private String resultCode; |
||||||
|
|
||||||
|
@JsonProperty("refund_count") |
||||||
|
private String refundCount; |
||||||
|
|
||||||
|
@JsonProperty("refund_account_0") |
||||||
|
private String refundAccount0; |
||||||
|
|
||||||
|
@JsonProperty("return_code") |
||||||
|
private String returnCode; |
||||||
|
|
||||||
|
@JsonProperty("refund_channel_0") |
||||||
|
private String refundChannel0; |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue