From e5c29d6ac2b210a9385723598d79a42ae5a9679e Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期三, 23 四月 2025 15:20:13 +0800
Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV

---
 pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/wechatpay/dto/RefundResponse.java |  114 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 114 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/wechatpay/dto/RefundResponse.java b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/wechatpay/dto/RefundResponse.java
new file mode 100644
index 0000000..6144eef
--- /dev/null
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/wechatpay/dto/RefundResponse.java
@@ -0,0 +1,114 @@
+package com.dy.pipIrrWechat.wechatpay.dto;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+/**
+ * @author ZhuBaoMin
+ * @date 2024-07-15 10:30
+ * @LastEditTime 2024-07-15 10:30
+ * @Description
+ */
+
+@Data
+@Schema(name = "閫�娆剧敵璇疯繑鍥炲璞�")
+public class RefundResponse {
+    public static final long serialVersionUID = 202403011431001L;
+
+    /**
+     * 寰俊鏀粯閫�娆惧彿
+     */
+    private String refund_id;
+
+    /**
+     * 鍟嗘埛閫�娆惧崟鍙�
+     */
+    private String out_refund_no;
+
+    /**
+     * 寰俊鏀粯璁㈠崟鍙�
+     */
+    private String transaction_id;
+
+    /**
+     * 鍟嗘埛璁㈠崟鍙�
+     */
+    private String out_trade_no;
+
+    /**
+     * 閫�娆炬笭閬�
+     */
+    private String channel;
+
+    /**
+     * 閫�娆惧叆璐﹁处鎴�
+     */
+    private String user_received_account;
+
+    /**
+     * 閫�娆炬垚鍔熸椂闂�
+     */
+    private String success_time;
+
+    /**
+     * 閫�娆惧垱寤烘椂闂�
+     */
+    private String create_time;
+
+    /**
+     * 閫�娆剧姸鎬�
+     */
+    private String status;
+
+    /**
+     * 閲戦淇℃伅
+     */
+    private RefundResponse.Amount amount;
+
+
+    @Data
+    private static class Amount {
+
+        /**
+         * 璁㈠崟鎬婚噾棰�
+         */
+        private Integer total;
+
+        /**
+         * 閫�娆鹃噾棰�
+         */
+        private Integer refund;
+
+        /**
+         * 鐢ㄦ埛鏀粯閲戦
+         */
+        private Integer payer_total;
+
+        /**
+         * 鐢ㄦ埛閫�娆鹃噾棰�
+         */
+        private Integer payer_refund;
+
+        /**
+         * 搴旂粨閫�娆鹃噾棰�
+         */
+        private Integer settlement_refund;
+
+        /**
+         * 搴旂粨璁㈠崟閲戦
+         */
+        private Integer settlement_total;
+
+        /**
+         * 浼樻儬閫�娆鹃噾棰�
+         */
+        private Integer discount_refund;
+
+        /**
+         * 閫�娆惧竵绉�
+         */
+        private String currency;
+
+    }
+
+}
\ No newline at end of file

--
Gitblit v1.8.0