Merge branch 'dev' into feat/org-position-134

This commit is contained in:
2025-11-11 08:14:34 +07:00
86 changed files with 6022 additions and 1658 deletions

No files matched your search

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