feat: 添加系统配置
This commit is contained in:
24
types/system.d.ts
vendored
24
types/system.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user