chore: 补充 Bug#704 迁移脚本 + 前端类型定义

This commit is contained in:
2026-06-10 09:13:05 +08:00
parent 8c42cf11b5
commit 5f00dab7ad
6 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
export interface IInPatient {
feeType?: string;
sexName?: string;
age?: string;
visitCode?: string;
patientName?: string;
patientId?: string;
encounterId?: string;
inpatientCode?: string;
patCode?: string;
phone?: string;
conditionNames?: string;
[key: string]: any;
}