多租户前端修改提交

This commit is contained in:
yaoyn
2024-07-19 17:47:11 +08:00
parent d85c09bd83
commit 8034e9b090
23 changed files with 958 additions and 43 deletions

View File

@ -6,6 +6,7 @@ import { DesktopData } from '/@/model/desktop/designer';
export interface LoginParams {
userName: string;
password: string;
tenantCode: string;
deviceType?: number;
}
@ -18,6 +19,9 @@ export interface RoleInfo {
export type DepartmentInfo = RoleInfo;
export type PostInfo = RoleInfo;
export type TenantInfo = RoleInfo;
/**
* @description: Login interface return value
*/