export interface Merchant { id?: string; name?: string; region: { province?: string; city?: string; area?: string; }; address?: string; roles?: { id: string; name: string }[]; principal?: string; principalMobile?: string; expiryTime: number; createdTime: number; type?: number; logo?: string; // logo地址 lnglat?: [number, number]; // 经度 theme?: string; // 主题色 banner?: string; // 个性图标 footer?: string; appLogo?: string; appBanner?: string; position?: { longitude: string; latitude: string; }; }