26 lines
782 B
MySQL
26 lines
782 B
MySQL
|
|
-- ============================================
|
|||
|
|
-- 支付宝月度提现额度配置
|
|||
|
|
-- ============================================
|
|||
|
|
-- 说明:为代理系统增加支付宝每月提现额度配置,默认 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`);
|