export interface AjaxResponse<T = any> {
    code: number;
    data: T;
    message: string;
}
export interface ISystemConfig {
    systemId: string;
    token: string;
    tenantId: string;
    userInfo: Record<string, any>;
    fetch: {
        baseURL: string;
    };
    [key: string]: any;
}
