feat: 添加部门管理
This commit is contained in:
65
types/system.d.ts
vendored
Normal file
65
types/system.d.ts
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
/** 语言信息类型 */
|
||||
export type LanguageInfo = {
|
||||
/** 语言ID */
|
||||
id: string;
|
||||
/** 语言代码 */
|
||||
code: string;
|
||||
/** 语言名称 */
|
||||
name: string;
|
||||
/** 创建时间 */
|
||||
create_time: string;
|
||||
/** 更新时间 */
|
||||
update_time: string;
|
||||
/** 创建人 */
|
||||
create_by: string;
|
||||
/** 更新人 */
|
||||
update_by: string;
|
||||
};
|
||||
/** 翻译信息类型 */
|
||||
export type TranslationInfo = {
|
||||
/** 翻译记录ID */
|
||||
id: string;
|
||||
/** 键值 */
|
||||
key: string;
|
||||
/** 翻译内容 */
|
||||
translation: string;
|
||||
/** 语言ID */
|
||||
locale_id: string;
|
||||
/** 语言代码 */
|
||||
locale_code: string;
|
||||
/** 语言名称 */
|
||||
locale_name: string;
|
||||
/** 创建时间 */
|
||||
create_time: string;
|
||||
/** 修改时间 */
|
||||
update_time: string;
|
||||
/** 创建人 */
|
||||
create_by: string;
|
||||
/** 修改人 */
|
||||
update_by: string;
|
||||
};
|
||||
/**部门信息类型 */
|
||||
export type DepartmentInfo = {
|
||||
/**部门ID */
|
||||
id: string;
|
||||
/**状态 */
|
||||
status: number;
|
||||
/**创建时间 */
|
||||
create_time: string;
|
||||
/**修改时间 */
|
||||
update_time: string;
|
||||
/**部门名称 */
|
||||
name: string;
|
||||
/**父部门ID */
|
||||
parentId: string;
|
||||
/**排序 */
|
||||
sort: number;
|
||||
/**部门电话 */
|
||||
phone: string;
|
||||
/**负责人 */
|
||||
principal: string;
|
||||
/**部门邮件 */
|
||||
email: string;
|
||||
/**备注信息 */
|
||||
remark: string;
|
||||
};
|
||||
Reference in New Issue
Block a user