| | |
| | | */ |
| | | export interface DeptQuery extends PageQuery { |
| | | deptName?: string; |
| | | deptCategory?: string; |
| | | status?: number; |
| | | } |
| | | |
| | |
| | | children: DeptVO[]; |
| | | deptId: number | string; |
| | | deptName: string; |
| | | deptCategory: string; |
| | | orderNum: number; |
| | | leader: string; |
| | | phone: string; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 部门类型 |
| | | */ |
| | | export interface DeptTreeVO extends BaseEntity { |
| | | id: number | string; |
| | | label: string; |
| | | parentId: number | string; |
| | | weight: number; |
| | | children: DeptTreeVO[]; |
| | | disabled: boolean; |
| | | } |
| | | |
| | | /** |
| | | * 部门表单类型 |
| | | */ |
| | | export interface DeptForm { |
| | |
| | | children?: DeptForm[]; |
| | | deptId?: number | string; |
| | | deptName?: string; |
| | | deptCategory?: string; |
| | | orderNum?: number; |
| | | leader?: string; |
| | | phone?: string; |