using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NXWMS.Client.String.Enums { /// /// 盘点方式 /// public enum InventoryMode { [Description("WMS端创建")] AppointPallet, [Description("随机盘点")] Random, [Description("盲盘")] Blind, [Description("人工选择库存盘点")] Select } }