using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core.WareHouse.Enum { /// /// 特殊库位枚举 [Editby shaocx,2022-12-7] /// public enum WareLocationEnum { /// /// 发货区域库位 /// [Description("发货区域库位")] SHIPPING = 1, /// /// 平库区域库位 /// [Description("平库区域库位")] PKQYKW = 2, ///// ///// 客户寄售区域库位 ///// //[Description("客户寄售区域库位")] //KHJSQYKW = 3, /// /// 收货区域库位 /// [Description("收货区域库位")] STAGING = 4, /// /// 待检区域库位 /// [Description("待检区域库位")] QMLOT = 5, ///// ///// 越库区域库位 ///// //[Description("越库区域库位")] //YKQY = 8, /// /// 不良品区域库位 /// [Description("不良品区域库位")] SQE = 9, /// /// 分拣区域 /// [Description("分拣区域")] FJQY = 10 } }