123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- class FReportElementInfo {
- String key;
- String name;
- dynamic value;
- String tagId;
- FReportElementInfo({
- required this.key,
- required this.name,
- required this.tagId,
- this.value,
- });
- }
- class FReportElementNames {
- ///医院名称
- static const String HospitalName = 'HospitalName';
- ///病人名
- static const String PatientName = 'PatientName';
- ///性别
- static const String Female = 'Female';
- ///年龄
- static const String PatientAge = 'PatientAge';
- ///报告图像
- static const String ReportImages = 'ReportImages';
- ///描述
- static const String ReportDescription = 'ReportDescription';
- /// 结论
- static const String ReportSummary = 'ReportSummary';
- ///报告时间
- static const String ReportTime = 'ReportTime';
- ///撰写医师
- static const String InspectionPhysician = 'InspectionPhysician';
- ///报告医师
- static const String ReportPhysician = 'ReportPhysician';
- }
|