export declare class Office { id: number; code?: string; officeType?: string; name?: string; fullName?: string; remarks?: string; parentId?: string; province?: string; city?: string; county?: string; area?: string; pathName?: string; address?: string; phone?: string; contacts?: string; zipCode?: string; constructor(options?: { id?: number; code?: string; officeType?: string; name?: string; fullName?: string; remarks?: string; parentId?: string; province?: string; city?: string; county?: string; area?: string; pathName?: string; address?: string; phone?: string; contacts?: string; zipCode?: string; }); }