This commit is contained in:
2024-10-15 17:19:23 +08:00
parent 8f903b457f
commit c76451788c
42 changed files with 1600 additions and 237 deletions

View File

@@ -11,6 +11,7 @@ type Config struct {
CacheRedis cache.CacheConf // 缓存配置,使用 go-zero 自带的缓存配置结构体
Alipay AlipayConfig
TopUp TopUpConfig
UserRpc zrpc.RpcClientConf
}
type AlipayConfig struct {
AppID string
@@ -20,4 +21,7 @@ type AlipayConfig struct {
}
type TopUpConfig struct {
MaxTopUpAmount int64
Subject string
NotifyURL string
ReturnURL string
}