refactor(config): update database and redis configurations

- Changed MySQL connection URL, username and password in test configuration
- Updated Redis host and port in both production and test configurations
- Corrected schema names in multiple XML mapper files from gxwebsoft_core to websoft_core
- Modified table joins to use updated core schema references
- Adjusted datasource settings to match new environment requirements
This commit is contained in:
2025-11-17 19:40:02 +08:00
parent 8ad85694ba
commit af28fd5b54
52 changed files with 107 additions and 107 deletions

View File

@@ -81,7 +81,7 @@ SELECT
tenant_id,
deleted,
comments
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE setting_key = 'mp-weixin'
AND tenant_id = 10550
AND deleted = 0;
@@ -93,7 +93,7 @@ SELECT
content,
tenant_id,
deleted
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE setting_key = 'mp-weixin'
AND deleted = 0
ORDER BY tenant_id;

View File

@@ -9,7 +9,7 @@ SELECT
content,
deleted,
comments
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE setting_id = 292;
-- 2. 查看租户10550的所有配置
@@ -20,7 +20,7 @@ SELECT
content,
deleted,
comments
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE tenant_id = 10550
ORDER BY setting_key;
@@ -32,7 +32,7 @@ SELECT
content,
deleted,
comments
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE setting_key = 'mp-weixin'
ORDER BY tenant_id;
@@ -44,7 +44,7 @@ SELECT
content,
deleted,
comments
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE setting_key = 'mp-weixin'
AND tenant_id = 10550
AND deleted = 0;
@@ -57,7 +57,7 @@ SELECT
content,
deleted,
comments
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE setting_key = 'mp-weixin'
AND deleted = 0
ORDER BY tenant_id;
@@ -67,7 +67,7 @@ SELECT
tenant_id,
COUNT(*) as config_count,
GROUP_CONCAT(setting_key) as setting_keys
FROM gxwebsoft_core.sys_setting
FROM websoft_core.sys_setting
WHERE deleted = 0
GROUP BY tenant_id
ORDER BY tenant_id;