feat(models): add source models for medical entities

Add new model interfaces and generators for diagnose, procedure, medical action and its items. These models will be used as base structures for medical data processing.
This commit is contained in:
Khafid Prayoga
2025-10-16 15:35:29 +07:00
parent cc848a662f
commit 9b38689f79
4 changed files with 66 additions and 0 deletions

No files matched your search

+16
View File
@@ -0,0 +1,16 @@
import { type Base, genBase } from './_base'
export interface DiagnoseSrc extends Base {
code: string
name: string
indName: string
}
export function genDiagnoseSrc(): DiagnoseSrc {
return {
...genBase(),
code: '',
name: '',
indName: '',
}
}