feat: 添加系统配置表单

This commit is contained in:
XIE7654
2025-09-27 10:33:54 +08:00
parent aaace900a6
commit 667ab9c02a
12 changed files with 596 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { BaseModel } from '#/models/base';
export namespace SystemConfigApi {
export interface SystemConfig {
id: number;
remark: string;
creator: string;
modifier: string;
update_time: string;
create_time: string;
is_deleted: boolean;
name: string;
key: string;
value: string;
config_type: boolean;
}
}
export class SystemConfigModel extends BaseModel<SystemConfigApi.SystemConfig> {
constructor() {
super('/system/config/');
}
}