fix(admin-web): 添加 SystemAccountDTO.accountSequence 类型字段

后端 wallet-service 返回的固定账户数据包含 accountSequence 字段,
前端类型定义缺少该字段导致编译失败。

🤖 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 23:27:36 -08:00
parent 1354055f09
commit 9a4c984bd2
1 changed files with 2 additions and 0 deletions

View File

@ -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;