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.

40 lines
1.0 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace Shentun.Peis.Enums
  6. {
  7. public static class PatientRegisterCompleteFlag
  8. {
  9. /// <summary>
  10. /// 预登记 0
  11. /// </summary>
  12. [Description("预登记")]
  13. public const char PreRegistration = '0';
  14. /// <summary>
  15. /// 正式登记 1
  16. /// </summary>
  17. [Description("正式登记")]
  18. public const char Registration = '1';
  19. /// <summary>
  20. /// 部分已检 2
  21. /// </summary>
  22. [Description("部分已检")]
  23. public const char PartCheck = '2';
  24. /// <summary>
  25. /// 已总检 3
  26. /// </summary>
  27. [Description("已总检")]
  28. public const char SumCheck = '3';
  29. [Description("已审核")]
  30. public const char Audit = '4';
  31. /// <summary>
  32. /// 项目全部已检未总检
  33. /// </summary>
  34. [Description("项目全部已检未总检")]
  35. public const char ItemCheckUnSumCheck = '5';
  36. }
  37. }