修复商福通接口签名编码逻辑;统一充值和创建套餐接口为聚合接口

This commit is contained in:
2025-06-19 17:44:56 +08:00
parent a4e5fc2af5
commit 63fbcbd6dd
6 changed files with 93 additions and 73 deletions

View File

@@ -24,12 +24,8 @@ func ApplyRouters(app *fiber.App) {
user.Post("/update/password", handlers.UpdatePassword)
user.Post("/identify", handlers.Identify)
user.Post("/identify/callback", handlers.IdentifyCallback)
user.Post("/recharge/prepare/alipay", handlers.RechargePrepareAlipay)
user.Post("/recharge/confirm/alipay", handlers.RechargeConfirmAlipay)
user.Post("/recharge/prepare/wechat", handlers.RechargePrepareWechat)
user.Post("/recharge/confirm/wechat", handlers.RechargeConfirmWechat)
user.Post("/recharge/prepare", handlers.RechargePrepare)
user.Post("/recharge/confirm", handlers.RechargeConfirm)
user.Post("/recharge/complete", handlers.RechargeComplete)
// 白名单
whitelist := api.Group("/whitelist")