report_element_info.dart 946 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. class FReportElementInfo {
  2. String key;
  3. String name;
  4. dynamic value;
  5. String tagId;
  6. FReportElementInfo({
  7. required this.key,
  8. required this.name,
  9. required this.tagId,
  10. this.value,
  11. });
  12. }
  13. class FReportElementNames {
  14. ///医院名称
  15. static const String HospitalName = 'HospitalName';
  16. ///病人名
  17. static const String PatientName = 'PatientName';
  18. ///性别
  19. static const String Female = 'Female';
  20. ///年龄
  21. static const String PatientAge = 'PatientAge';
  22. ///报告图像
  23. static const String ReportImages = 'ReportImages';
  24. ///描述
  25. static const String ReportDescription = 'ReportDescription';
  26. /// 结论
  27. static const String ReportSummary = 'ReportSummary';
  28. ///报告时间
  29. static const String ReportTime = 'ReportTime';
  30. ///撰写医师
  31. static const String InspectionPhysician = 'InspectionPhysician';
  32. ///报告医师
  33. static const String ReportPhysician = 'ReportPhysician';
  34. }