From 0b902def620835d7903f36417de2c3964d1c1e21 Mon Sep 17 00:00:00 2001 From: gaoda <2772718884@qq.com> Date: Wed, 10 Dec 2025 10:18:56 +0800 Subject: [PATCH] =?UTF-8?q?fix(refund):=20=E6=9B=B4=E6=96=B0=E9=80=80?= =?UTF-8?q?=E6=AC=BE=E6=88=90=E5=8A=9F=E7=8A=B6=E6=80=81=E7=A0=81=E5=88=A4?= =?UTF-8?q?=E6=96=AD=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将退款成功状态码从"BBS0000"更改为"000000" - 确保与最新的退款接口响应格式保持一致 --- model/refund.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/refund.go b/model/refund.go index d5f9738..6f022b0 100644 --- a/model/refund.go +++ b/model/refund.go @@ -70,5 +70,5 @@ type RefundRespData struct { // SuccessOrFail 判断退款交易是否成功 func (r *RefundResponse) SuccessOrFail() bool { - return r.Code == "BBS00000" + return r.Code == "000000" }