using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Shentun.Peis.Enums { public static class BarcodeModeFlag { /// /// 使用项目类别设置 /// [Description("使用项目类别设置")] public const char UsingItemType = '0'; /// /// 打印人员登记号 /// [Description("打印人员登记号")] public const char PrintPatientRegisterNumber = '1'; /// /// 不打印 /// [Description("不打印")] public const char NoPrint = '2'; } }