add extension_time

This commit is contained in:
2025-12-31 12:53:19 +08:00
parent 193b47893d
commit f155c64a0b
4 changed files with 18 additions and 18 deletions

View File

@@ -7,16 +7,16 @@ import (
type Config struct {
rest.RestConf
DataSource string
CacheRedis cache.CacheConf
JwtAuth JwtAuth // JWT 鉴权相关配置
VerifyCode VerifyCode
Encrypt Encrypt
Alipay AlipayConfig
Wxpay WxpayConfig
Applepay ApplepayConfig
Ali AliConfig
Tianyuanapi TianyuanapiConfig
DataSource string
CacheRedis cache.CacheConf
JwtAuth JwtAuth // JWT 鉴权相关配置
VerifyCode VerifyCode
Encrypt Encrypt
Alipay AlipayConfig
Wxpay WxpayConfig
Applepay ApplepayConfig
Ali AliConfig
Tianyuanapi TianyuanapiConfig
SystemConfig SystemConfig
WechatH5 WechatH5Config
Authorization AuthorizationConfig // 授权书配置
@@ -25,6 +25,7 @@ type Config struct {
AdminConfig AdminConfig
AdminPromotion AdminPromotion
TaxConfig TaxConfig
ExtensionTime int64
}
// JwtAuth 用于 JWT 鉴权配置
@@ -98,8 +99,8 @@ type WechatH5Config struct {
AppSecret string
}
type WechatMiniConfig struct {
AppID string
AppSecret string
AppID string
AppSecret string
}
type QueryConfig struct {
ShareLinkExpire int64
@@ -126,4 +127,4 @@ type TianyuanapiConfig struct {
type AuthorizationConfig struct {
FileBaseURL string // 授权书文件访问基础URL
}
}