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.
17 lines
269 B
TypeScript
17 lines
269 B
TypeScript
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: '',
|
|
}
|
|
}
|