using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.LocationEnum { /// /// 货位类型 /// public enum LocationTypeEnum { /// /// 正常物料区 /// [Description("正常物料区")] Normal = 0, /// /// -般材料区 /// [Description("智仓--般材料仓")] Ordinary = 1, /// /// 不良品区 /// [Description("智仓-不良品仓")] Defective = 2, /// /// PCBA区 /// [Description("智仓-电子仓")] Electronic = 3, /// /// 保税区 /// [Description("智仓-保税材料仓")] Bonded = 4, [Description("智仓-包材仓")] Package = 5, [Description("智仓-试产仓")] TrialProduction = 6, } }