From 1d3288acca89a783f33cb2d3e5ad92052c586a17 Mon Sep 17 00:00:00 2001 From: wolter Date: Fri, 6 Dec 2024 09:22:21 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=BE=AE=E4=BF=A1jsapi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/http/requestmapping/front.go | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app/http/requestmapping/front.go b/app/http/requestmapping/front.go index d695597..9d6385e 100644 --- a/app/http/requestmapping/front.go +++ b/app/http/requestmapping/front.go @@ -2,6 +2,7 @@ package requestmapping import ( "PaymentCenter/app/constants/common" + "PaymentCenter/app/http/entities" "PaymentCenter/app/http/entities/front" ) @@ -14,10 +15,11 @@ var FrontRequestMap = map[string]func() (validForm interface{}, isSaveLog bool){ var FrontRequestMapBeforeDecrypt = map[string]func() interface{}{ - common.FRONT_V1 + "/pay/url": func() interface{} { return new(front.RequestBody) }, - common.FRONT_V1 + "/pay/refund": func() interface{} { return new(front.RequestBody) }, - common.FRONT_V1 + "/pay/query": func() interface{} { return new(front.RequestBody) }, - common.FRONT_V1 + "/pay/close": func() interface{} { return new(front.CloseReqs) }, - //common.FRONT_V1 + "/wx/index": func() interface{} { return new(entities.PageRequest) }, - //common.FRONT_V1 + "/wx/getWxAuthUrl": func() interface{} { return new(front.GetWxAuthUrlRequest) }, + common.FRONT_V1 + "/pay/url": func() interface{} { return new(front.RequestBody) }, + common.FRONT_V1 + "/pay/refund": func() interface{} { return new(front.RequestBody) }, + common.FRONT_V1 + "/pay/query": func() interface{} { return new(front.RequestBody) }, + common.FRONT_V1 + "/pay/close": func() interface{} { return new(front.CloseReqs) }, + common.FRONT_V1 + "/wx/index": func() interface{} { return new(entities.PageRequest) }, + common.FRONT_V1 + "/wx/getWxAuthUrl": func() interface{} { return new(front.GetWxAuthUrlRequest) }, + common.FRONT_V1 + "/wx/getWxAuth": func() interface{} { return new(front.GetWxAuthRequest) }, }