|
@@ -0,0 +1,18 @@
|
|
|
|
|
+package com.mrxu.framework.common.xcx.bean;
|
|
|
|
|
+
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
|
|
+@Data
|
|
|
|
|
+public class RefundResultResponse extends PayBaseResponse {
|
|
|
|
|
+ /***** 以下字段在return_code为SUCCESS的时候有返回 *****/
|
|
|
|
|
+ // 小程序ID appid 是 String(32) wx8888888888888888 微信分配的小程序ID
|
|
|
|
|
+ private String appid;
|
|
|
|
|
+ // 商户号 mch_id 是 String(32) 1900000109 微信支付分配的商户号
|
|
|
|
|
+ private String mch_id;
|
|
|
|
|
+ // 随机字符串 nonce_str 是 String(32) 5K8264ILTKCH16CQ2502SI8ZNMTM67VS 随机字符串,不长于32位
|
|
|
|
|
+ private String nonce_str;
|
|
|
|
|
+ // String(1024) 加密信息请用商户密钥进行解密,详见解密方式
|
|
|
|
|
+ // todo 这个暂时没有去解密 https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=9_16&index=10
|
|
|
|
|
+ private String req_info;
|
|
|
|
|
+
|
|
|
|
|
+}
|