From 0e4cb0c4ad5c18c5ee653b13cf2117200d6cbd1b Mon Sep 17 00:00:00 2001 From: xuyang Date: Thu, 11 Sep 2025 11:16:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=95=E8=AF=89=E5=B7=A5=E5=8D=95=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E6=8E=A5=E5=8F=A3=E6=96=B0=E5=A2=9E=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/pay/complaint_reply.go | 1 + services/pay/merchant_config_debug.go | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/services/pay/complaint_reply.go b/services/pay/complaint_reply.go index 2203093..81f5e3c 100644 --- a/services/pay/complaint_reply.go +++ b/services/pay/complaint_reply.go @@ -11,6 +11,7 @@ type ComplaintReplyRequest struct { ComplaintId string `position:"Body" field:"complaint_id" default:"" ` Content string `position:"Body" field:"content" default:"" ` Images string `position:"Body" field:"images" default:"" ` + PayType int `position:"Body" field:"pay_type" default:"" ` } type ComplaintReplyResponse struct { diff --git a/services/pay/merchant_config_debug.go b/services/pay/merchant_config_debug.go index c574707..874e93a 100644 --- a/services/pay/merchant_config_debug.go +++ b/services/pay/merchant_config_debug.go @@ -7,7 +7,8 @@ import ( type merchantConfigDebugRequest struct { *requests.RpcRequest - MchId string `position:"Body" field:"mch_id" default:"" ` + MchId string `position:"Body" field:"mch_id" default:"" ` + PayType int `position:"Body" field:"pay_type" default:"" ` } type merchantConfigDebugResponse struct {