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.

31 lines
701 B

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 BarcodeModeFlag
  8. {
  9. /// <summary>
  10. /// 使用项目类别设置
  11. /// </summary>
  12. [Description("使用项目类别设置")]
  13. public const char UsingItemType = '0';
  14. /// <summary>
  15. /// 打印人员登记号
  16. /// </summary>
  17. [Description("打印人员登记号")]
  18. public const char PrintPatientRegisterNumber = '1';
  19. /// <summary>
  20. /// 不打印
  21. /// </summary>
  22. [Description("不打印")]
  23. public const char NoPrint = '2';
  24. }
  25. }