34 lines
599 B
C#
34 lines
599 B
C#
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace MasstransferCommon.Model.Enum;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 扫码枪接口类型
|
|||
|
/// </summary>
|
|||
|
public enum ScannerInterfaceEnum
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 串口
|
|||
|
/// </summary>
|
|||
|
[Description("串口")] Serial,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// TCP
|
|||
|
/// </summary>
|
|||
|
[Description("网口")] Tcp,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// USB
|
|||
|
/// </summary>
|
|||
|
[Description("USB")] Usb,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 蓝牙
|
|||
|
/// </summary>
|
|||
|
[Description("蓝牙")] Bluetooth,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 无线
|
|||
|
/// </summary>
|
|||
|
[Description("无线")] Wireless
|
|||
|
}
|