This commit is contained in:
2025-06-24 15:46:41 +08:00
parent 3833f67b03
commit be63c01987
22 changed files with 1509 additions and 34 deletions

View File

@@ -25,6 +25,7 @@ type Config struct {
Query QueryConfig
AdminConfig AdminConfig
AdminPromotion AdminPromotion
TaxConfig TaxConfig
}
// JwtAuth 用于 JWT 鉴权配置
@@ -124,3 +125,7 @@ type AdminConfig struct {
type AdminPromotion struct {
URLDomain string
}
type TaxConfig struct {
TaxRate float64
TaxExemptionAmount float64
}