新增扣税

This commit is contained in:
2025-06-22 16:02:09 +08:00
parent 541b88bbf8
commit 8b728e28c5
18 changed files with 1206 additions and 28 deletions

View File

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