fix: resolve list organization source

This commit is contained in:
riefive
2025-10-01 14:36:48 +07:00
parent 6b69e48bd6
commit 41405ae113
11 changed files with 106 additions and 70 deletions
+1
View File
@@ -1,4 +1,5 @@
export interface Installation {
id?: number | null
code: string
name: string
encounterClass_code?: string | null
+1 -1
View File
@@ -2,5 +2,5 @@ export interface Unit {
id?: number
code: string
name: string
installation?: string | number
installation_id?: string | number
}