Fix: Refactor Organization CRUD {id} to {code}

This commit is contained in:
hasyim_kai
2025-11-11 14:07:46 +07:00
parent 3f63f195d0
commit 270869b928
52 changed files with 211 additions and 216 deletions

No files matched your search

+2 -2
View File
@@ -4,7 +4,7 @@ export interface DivisionPosition extends Base {
code: string
name: string
headStatus?: boolean
division_id: number
division_id: string
employee_id?: number
employee?: Employee | null
@@ -16,7 +16,7 @@ export function genDivisionPosition(): DivisionPosition {
code: '',
name: '',
headStatus: false,
division_id: 0,
division_id: '',
employee_id: 0,
}
}