fix: add tree select subspecialist and filter doctor

This commit is contained in:
riefive
2025-10-28 10:02:12 +07:00
parent 803139cc17
commit 99c5266f2b
5 changed files with 183 additions and 23 deletions

No files matched your search

+2
View File
@@ -1,9 +1,11 @@
import { type Base, genBase } from "./_base"
import type { Subspecialist } from "./subspecialist"
export interface Specialist extends Base {
code: string
name: string
unit_id?: number | string | null
subspecialists?: Subspecialist[]
}
export function genSpecialist(): Specialist {