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