This commit is contained in:
2026-01-12 16:43:08 +08:00
parent dc747139c9
commit 3c6e2683f5
110 changed files with 9630 additions and 481 deletions

View File

@@ -0,0 +1,26 @@
-- ============================================
-- 支付宝月度提现额度配置
-- ============================================
-- 说明:为代理系统增加支付宝每月提现额度配置,默认 800 元
-- 执行时间2026-01-06
-- ============================================
INSERT INTO
`agent_config` (
`id`,
`config_key`,
`config_value`,
`config_type`,
`description`
)
VALUES (
'f47ac10b-58cc-4372-a567-0e02b2c3d479',
'alipay_month_quota',
'800.00',
'withdrawal',
'支付宝每月提现额度(单位:元)'
)
ON DUPLICATE KEY UPDATE
`config_value` = VALUES(`config_value`),
`config_type` = VALUES(`config_type`),
`description` = VALUES(`description`);