update 删除多租户功能

This commit is contained in:
疯狂的狮子Li
2026-03-13 16:11:00 +08:00
parent 0dc58fa3c6
commit e3227f5cc5
25 changed files with 18 additions and 1166 deletions

View File

@@ -2,7 +2,6 @@
* 注册
*/
export type RegisterForm = {
tenantId: string;
username: string;
password: string;
confirmPassword?: string;
@@ -15,7 +14,6 @@ export type RegisterForm = {
* 登录请求
*/
export interface LoginData {
tenantId?: string;
username?: string;
password?: string;
rememberMe?: boolean;
@@ -43,17 +41,3 @@ export interface VerifyCodeResult {
uuid?: string;
img?: string;
}
/**
* 租户
*/
export interface TenantVO {
companyName: string;
domain: any;
tenantId: string;
}
export interface TenantInfo {
tenantEnabled: boolean;
voList: TenantVO[];
}