refactor: 统一状态字段类型为字符串并移除租户配额功能

- 将多个模型中的status字段从布尔值改为字符串类型
- 移除租户配额相关字段和功能
- 优化任务调度器中的租户上下文处理
- 清理无用代码和注释
This commit is contained in:
zhangtao
2025-11-28 00:59:38 +08:00
parent 0c86069efa
commit 42fa1944e0
30 changed files with 86 additions and 346 deletions
-5
View File
@@ -92,9 +92,6 @@ export interface TenantTable extends BaseType {
code?: string;
start_time?: string;
end_time?: string;
max_user_count?: number;
enable_quota_limit?: boolean;
current_user_count?: number;
}
export interface TenantForm extends BaseFormType {
@@ -102,6 +99,4 @@ export interface TenantForm extends BaseFormType {
code?: string;
start_time?: string;
end_time?: string;
max_user_count?: number;
enable_quota_limit?: boolean;
}