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
31 lines
701 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Enums
|
|
{
|
|
|
|
public static class BarcodeModeFlag
|
|
{
|
|
/// <summary>
|
|
/// 使用项目类别设置
|
|
/// </summary>
|
|
[Description("使用项目类别设置")]
|
|
public const char UsingItemType = '0';
|
|
|
|
|
|
/// <summary>
|
|
/// 打印人员登记号
|
|
/// </summary>
|
|
[Description("打印人员登记号")]
|
|
public const char PrintPatientRegisterNumber = '1';
|
|
|
|
|
|
/// <summary>
|
|
/// 不打印
|
|
/// </summary>
|
|
[Description("不打印")]
|
|
public const char NoPrint = '2';
|
|
}
|
|
}
|