feat: 添加系统配置

This commit is contained in:
2025-02-12 22:36:29 +08:00
parent b1b00a3a02
commit 21d128ed66
7 changed files with 745 additions and 0 deletions

24
types/system.d.ts vendored
View File

@@ -222,3 +222,27 @@ export type DepartmentRoleInfo = {
/** 更新时间 */
update_time: string;
};
/**系统配置信息 */
export interface ConfigInfo {
/** 主键ID */
id: string;
/** 创建人 */
create_by: string;
/** 创建时间 */
create_time: string;
/** 更新人 */
update_by: string;
/** 更新时间 */
update_time: string;
/**配置名称 */
name: string;
/**配置键 */
key: string;
/**配置值 */
value: string;
/**系统配置 */
type: boolean;
/**备注 */
remark: string;
}