import { Me } from './me'; import { Dept, Group, Tenant } from '../'; import { Position } from './position'; export declare class UserPositionInfo { /** * 用户信息 */ user: Me; /** * 用户职位信息 */ position: Position; /** * 用户部门信息 */ dept: Dept; /** * 医院信息 */ hospital: Tenant; /** * 用户小组信息 */ groups: Group[]; /** * 用户头像路径 */ photoURL: string; }