import type { ItemMeta } from "./_model" export interface Subspecialist extends ItemMeta { code: string name: string specialist_id: number | string } export function genSubspecialist(): Subspecialist { return { id: 0, createdAt: '', updatedAt: '', code: '', name: '', specialist_id: 0 } }