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:
parent
1354055f09
commit
9a4c984bd2
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue