You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
257 B

export interface IDepartment {
id: number,
parent_id: number,
manager_user_id: number,
phone: string,
name: string,
sort: number,
status: string,
remark: string
}
export interface DepartmentRequest extends IDepartment {
}