export interface CloudtSessionUser { id: number; cloudToken: string; account: string; userId: number; realname: string; tenantId: number; mobile: string; email: string; } export interface UserRoles { orgId: string; userId: string; roles: Role[]; } export interface Role { id: string; productCode: string; deleted: boolean; enabled: boolean; } export interface CustomSysTenantSetting { id: number; customTenantName: string; customProductName: string; hideLogo: boolean; remark: string; tenantId: string; }