export interface CurrentProjectAuthTree { id?: string; name?: string; sort?: number; type?: string; fullId?: string; fullName?: string; orgId?: string; childNodes?: CurrentProjectAuthTree[]; } export interface PersonModel { id: string; key?: string; name: string; mobileNumber: string; email: string; status: number; } export interface PersonApiParams { productCode: string; isAll?: boolean; orgId?: string; isDepart?: boolean; departId?: string; kw?: string; } export interface MenuTreeModel { name?: string; opt1?: string; opt2?: string; childList?: MenuTreeModel[]; } export interface AppAuthNodes { deviceName: string; deviceModelType: string; deviceModelName: string; deviceId: string; opt1: string; opt2: string; childList: AppAuthNodes[]; }