You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
3.4 KiB

2 days ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Serialization;
  7. namespace Shentun.Peis.PlugIns.Extensions.ImportLisResults.AiDiKang
  8. {
  9. // 根节点对应的类
  10. [XmlRoot("NewDataSet")]
  11. public class GetReportItemListByCustomerBarocdeCGOut
  12. {
  13. [XmlElement("item")]
  14. public List<GetReportItemListByCustomerBarocdeCGItem> Items { get; set; }
  15. }
  16. // 每个item对应的类
  17. public class GetReportItemListByCustomerBarocdeCGItem
  18. {
  19. public string AdiconBarcode { get; set; }
  20. public string PatientName { get; set; }
  21. public string Sex { get; set; }
  22. public string Age { get; set; }
  23. public string AgeType { get; set; }
  24. public string Department { get; set; }
  25. public string BedNo { get; set; }
  26. public string CollectionDate { get; set; }
  27. public string ReceivedDate { get; set; }
  28. public string LisDate { get; set; }
  29. public string ReportDate { get; set; }
  30. public string CustomerBarcode { get; set; }
  31. public string Doctor { get; set; }
  32. public string Technician { get; set; }
  33. public string Checkedby { get; set; }
  34. public string Remark { get; set; }
  35. public string Instrument { get; set; }
  36. public string SerialNumber { get; set; }
  37. public string SampleType { get; set; }
  38. public string ClinicalDiagnosis { get; set; }
  39. public string ItemCode { get; set; }
  40. public string ItemName_CN { get; set; }
  41. public string ItemName_EN { get; set; }
  42. public string Result { get; set; }
  43. public string ResultHint { get; set; }
  44. public string ResultHintJT { get; set; }
  45. public string ResultReference { get; set; }
  46. public string ResultUnit { get; set; }
  47. public string TestMethod { get; set; }
  48. public string TestMethod_EN { get; set; }
  49. public string SampleChar { get; set; }
  50. public string Result_Pathology { get; set; }
  51. public string PatientNumber { get; set; }
  52. public string PatientPhone { get; set; }
  53. public string BirthDate { get; set; }
  54. public string jyjs { get; set; }
  55. public string Str1 { get; set; }
  56. public string Str2 { get; set; }
  57. public string Str3 { get; set; }
  58. public string Str4 { get; set; }
  59. public string Str5 { get; set; }
  60. public string CustomRequestitemid { get; set; }
  61. public string Customitemid { get; set; }
  62. public string CriticalValueFlag { get; set; }
  63. public string ItemPositiveFlag { get; set; }
  64. public string CustomerPositiveFlag { get; set; }
  65. public string Xmbh { get; set; }
  66. public string Ybzt { get; set; }
  67. public string Pdf { get; set; }
  68. public string Sfzy { get; set; }
  69. public string Bglxs { get; set; }
  70. public string Zhmc { get; set; }
  71. public string checkedbyid { get; set; }
  72. public string technicianid { get; set; }
  73. public string approverid { get; set; }
  74. public string approver { get; set; }
  75. public string meiNianClassify { get; set; }
  76. public string sfzid { get; set; }
  77. public string mutualRecognition { get; set; }
  78. public string reportSumUp { get; set; }
  79. public string Result_EN { get; set; }
  80. public string ResultReference_EN { get; set; }
  81. public string hasResultRechecked { get; set; }
  82. }
  83. }