feat/micro-lab-order-50: added antibiotic

This commit is contained in:
Andrian Roshandy
2025-12-01 01:50:39 +07:00
parent 95e27a8b6f
commit 1ee0f39e7d
13 changed files with 242 additions and 1 deletions

No files matched your search

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