Files
dax-pay/_config/sql/update-datas.sql
DaxPay Dev f618da0828 refactor(payment): 拆分 core 包结构并移除遗留 ChannelConfig
将 payment-common 中 core 下的 auth/strategy/trade/route 等上移为一级包,同步更新通道与 unipay 引用;删除无写路径、无 DDL 的 ChannelConfig 及相关 API/i18n,配置以 PayProductConfig 与通道商户为准。
2026-07-13 18:12:14 +08:00

48 lines
1.5 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- ----------------------------
-- 数据升级:对外业务命名统一(菜单 title
-- 执行顺序update-tables.sql → update-datas.sql
-- 说明:仅更新展示文案,不改 menu code / path / 权限标识
-- ----------------------------
-- 通道路由:英文 Channel Routing → Channel Binding
UPDATE "public"."iam_perm_menu"
SET "title_cn" = '通道路由',
"title_en" = 'Channel Binding',
"last_modified_time" = NOW()
WHERE "id" = 4040111;
-- 支付产品管理 → 支付产品配置
UPDATE "public"."iam_perm_menu"
SET "title_cn" = '支付产品配置',
"title_en" = 'Payment Product Config',
"last_modified_time" = NOW()
WHERE "id" = 40105;
-- 渠道应用 → 通道应用配置
UPDATE "public"."iam_perm_menu"
SET "title_cn" = '通道应用配置',
"title_en" = 'Channel App Config',
"last_modified_time" = NOW()
WHERE "id" = 4040132;
-- 渠道服务商配置 → 通道服务商配置
UPDATE "public"."iam_perm_menu"
SET "title_cn" = '通道服务商配置',
"title_en" = 'Channel ISV Config',
"last_modified_time" = NOW()
WHERE "id" = 40508;
-- 对接配置英文 Credential Config → API Credentials
UPDATE "public"."iam_perm_menu"
SET "title_cn" = '对接配置',
"title_en" = 'API Credentials',
"last_modified_time" = NOW()
WHERE "id" = 4040102;
-- 码牌和聚合支付 → 聚合收款配置
UPDATE "public"."iam_perm_menu"
SET "title_cn" = '聚合收款配置',
"title_en" = 'Aggregate Pay Config',
"last_modified_time" = NOW()
WHERE "id" = 4040121;