Add Bank Card for Withdrawal

This commit is contained in:
Mrx
2026-02-06 15:20:42 +08:00
parent 9fe6a88670
commit cae488d88e
49 changed files with 2797 additions and 1831 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`);