fix: id兼容, 通知入口
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m0s

This commit is contained in:
luo
2026-07-28 15:19:29 +08:00
parent 0e8a11430a
commit 261f5f2853
21 changed files with 271 additions and 71 deletions

View File

@@ -12,7 +12,8 @@ export enum AccountStatus {
// 账号实体(统一账号模型,匹配后端 ModelAccountResponse
export interface PlatformAccount {
ID: number
id?: number
ID?: number
CreatedAt?: string
UpdatedAt?: string
DeletedAt?: string | null

View File

@@ -18,7 +18,8 @@ export enum PermissionStatus {
// 权限实体(匹配后端 ModelPermission
export interface Permission {
ID: number
id?: number
ID?: number
CreatedAt?: string
UpdatedAt?: string
DeletedAt?: string | null

View File

@@ -19,7 +19,7 @@ export enum RoleStatus {
// 角色实体(匹配后端 ModelRole
export interface PlatformRole {
id?: number
ID: number
ID?: number
CreatedAt?: string
UpdatedAt?: string
DeletedAt?: string | null