using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CMS.Plugin.HIAWms.Domain.Shared.Enums { /// /// 库位类型 /// [Description("库位类型")] public enum PlaceTypeEnum { /// /// 原料库位 /// [Description("原料库位")] YUANLIAOKUWEI = 1, /// /// 入库口 /// [Description("入库口")] RUKUKOU = 2, /// /// 出库口 /// [Description("出库口")] CHUKUKOU = 3, /// /// 虚拟库位 /// [Description("虚拟库位")] XUNIKUWEI = 4, } }