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:
No files matched your search
@@ -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: '',
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user