XinYeYouKu/app/http/requestmapping/front.go

14 lines
337 B
Go
Raw Normal View History

2024-06-07 18:24:56 +08:00
package requestmapping
2024-06-11 18:47:02 +08:00
import (
"qteam/app/constants/common"
"qteam/app/http/entities/front"
)
2024-06-07 18:24:56 +08:00
var FrontRequestMap = map[string]func() interface{}{
2024-06-11 14:57:08 +08:00
"/v1/GenerateSm2Key": func() interface{} { return new(struct{}) },
2024-06-11 18:47:02 +08:00
// 兴业银行登录
common.FRONT_API_V1 + "/xy/login": func() interface{} { return new(front.LoginRequest) },
2024-06-07 18:24:56 +08:00
}