using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core.WareHouse.Enum { /// /// 特殊库位枚举 [Editby shaocx,2022-12-7] /// public enum WareLocationEnum { /// /// 发货区域库位 /// FHQY = 1, /// /// 平库区域库位 /// //PKQY = 2, /// /// 收货区域 /// SHQY = 3, /// /// 组盘区域 /// ZPQY = 4 } }