feat(division): fixing logic treeview

This commit is contained in:
riefive
2025-10-04 09:05:28 +07:00
parent 71e0615ee1
commit a7cbbeeda9
6 changed files with 32 additions and 8 deletions
+2
View File
@@ -2,6 +2,8 @@ export interface Division {
id?: number
code: string
name: string
parent_id?: number | null
childrens?: Division[] | null
}
export interface DivisionPosition {