fix(admin-web): 修正系统账户名称映射

- S0000000001: 运营1
- S0000000002: 运营2
- S0000000003: 总部储蓄
- S0000000004: 积分股池

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-06 22:14:24 -08:00
parent 463e70131d
commit 90ca62b594
1 changed files with 4 additions and 4 deletions

View File

@ -386,10 +386,10 @@ export const FEE_COLLECTION_TYPE_LABELS: Record<string, string> = {
*
*/
export const SYSTEM_ACCOUNT_NAMES: Record<string, string> = {
'S0000000001': '总部账户',
'S0000000002': '成本账户',
'S0000000003': '运营账户',
'S0000000004': 'RWAD底池',
'S0000000001': '运营1',
'S0000000002': '运营2',
'S0000000003': '总部储蓄',
'S0000000004': '积分股池',
'S0000000005': '分享权益池',
'S0000000006': '手续费归集',
};