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) }, }