feat: Bind data to TenantTable #2846 (#2883)

### What problem does this PR solve?

feat: Bind data to TenantTable #2846
feat: Add TenantTable

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-10-18 09:21:01 +08:00
committed by GitHub
parent 791afbba15
commit cf3106040a
15 changed files with 548 additions and 11 deletions

View File

@ -60,3 +60,28 @@ interface Es {
number_of_nodes: number;
active_shards: number;
}
export interface ITenantUser {
avatar: null;
delta_seconds: number;
email: string;
is_active: string;
is_anonymous: string;
is_authenticated: string;
is_superuser: boolean;
nickname: string;
role: string;
status: string;
update_date: string;
user_id: string;
}
export interface ITenant {
avatar: string;
delta_seconds: number;
email: string;
nickname: string;
role: string;
tenant_id: string;
update_date: string;
}