14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
export interface Division {
|
|
id?: number
|
|
code: string
|
|
name: string
|
|
parent_id?: number | null
|
|
childrens?: Division[] | null
|
|
}
|
|
|
|
export interface DivisionPosition {
|
|
code: string
|
|
name: string
|
|
division_id: number
|
|
}
|