advint-user-admin
Version:
开箱即用的后台管理基础用户系统组件
14 lines (13 loc) • 702 B
TypeScript
import { TenantForm, TenantQuery, TenantVO } from './types';
import { AxiosPromise } from 'axios';
export declare function listTenant(query: TenantQuery): AxiosPromise<TenantVO[]>;
export declare function getTenant(id: string | number): AxiosPromise<TenantVO>;
export declare function addTenant(data: TenantForm): any;
export declare function updateTenant(data: TenantForm): any;
export declare function changeTenantStatus(data: {
tenantId: string | number;
tenantStatus: string;
}): any;
export declare function delTenant(id: string | number | Array<string | number>): any;
export declare function dynamicTenant(tenantId: string | number): any;
export declare function gerDecodeSrcret(): any;