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.

68 lines
1.7 KiB

2 years ago
1 year ago
2 years ago
2 years ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Shentun.Peis.PlugIns.ImportLisResults
  9. {
  10. public class LisResultFromImportInterface
  11. {
  12. public string LisRequestNo { get; set; }
  13. /// 项目编号
  14. /// </summary>
  15. public string ItemId { get; set; }
  16. /// <summary>
  17. /// 项目名称
  18. /// </summary>
  19. public string ItemName { get; set; }
  20. /// <summary>
  21. /// 结果
  22. /// </summary>
  23. public string? Result { get; set; }
  24. /// <summary>
  25. /// 单位
  26. /// </summary>
  27. public string? Unit { get; set; }
  28. /// <summary>
  29. /// 参考范围
  30. /// </summary>
  31. public string? ReferenceRangeValue { get; set; }
  32. /// <summary>
  33. /// 危急值范围
  34. /// </summary>
  35. public string? CriticalRangeValue { get; set; }
  36. /// <summary>
  37. /// 危急值
  38. /// </summary>
  39. public string? CriticalValue { get; set; }
  40. /// <summary>
  41. /// 报告单状态
  42. /// </summary>
  43. public string? ResultStatusId { get; set; } = "01";//01-正常
  44. /// <summary>
  45. /// 报告单提示
  46. /// </summary>
  47. public string ReportPrompt { get; set; }
  48. /// <summary>
  49. /// 检查医生
  50. /// </summary>
  51. public string? CheckDoctorName { get; set; }
  52. /// <summary>
  53. /// 检查日期
  54. /// </summary>
  55. public DateTime? CheckDate { get; set; }
  56. public Guid ExecOrganizationUnitId { get; set; }
  57. }
  58. }