From 9a4c984bd215071fcbce5238bed1cb132ea19a96 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 6 Jan 2026 23:27:36 -0800 Subject: [PATCH] =?UTF-8?q?fix(admin-web):=20=E6=B7=BB=E5=8A=A0=20SystemAc?= =?UTF-8?q?countDTO.accountSequence=20=E7=B1=BB=E5=9E=8B=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 后端 wallet-service 返回的固定账户数据包含 accountSequence 字段, 前端类型定义缺少该字段导致编译失败。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/admin-web/src/types/system-account.types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/admin-web/src/types/system-account.types.ts b/frontend/admin-web/src/types/system-account.types.ts index 56fb90a6..2c6aeeb4 100644 --- a/frontend/admin-web/src/types/system-account.types.ts +++ b/frontend/admin-web/src/types/system-account.types.ts @@ -6,9 +6,11 @@ /** * 系统账户 DTO + * [2026-01-07] 更新:添加 accountSequence 字段(后端 wallet-service 返回) */ export interface SystemAccountDTO { id: string; + accountSequence: string; // 账户序列号,如 S0000000001 accountType: string; regionCode: string | null; regionName: string | null;