using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Core.Enums { public enum WarehouseEnum { /// /// 板料仓 /// [Description("板料仓")] SC01_BC, /// /// 板料仓 /// [Description("板料仓")] SC02_BC, /// /// 成品仓 /// [Description("成品仓")] SC01_CP, /// /// 成品仓 /// [Description("成品仓")] SC02_CP, /// /// 低温仓 /// [Description("低温仓")] SC01_DW, /// /// 药水仓 /// [Description("药水仓")] SC01_YS, } }