feat(subspecialist): finishing integrate specialist

This commit is contained in:
riefive
2025-09-30 14:57:32 +07:00
parent e62d84b812
commit 7aeb99db89
11 changed files with 704 additions and 377 deletions
+1
View File
@@ -1,4 +1,5 @@
export interface Specialist {
id?: number
code: string
name: string
unit_id: number | string
+1 -1
View File
@@ -1,5 +1,5 @@
export interface Subspecialist {
code: string
name: string
unit_id: number
specialist_id: number | string
}