using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.WareHouseEnum { /// /// 仓库 /// GW1 = 陕煤二厂 - 高温1号仓库
/// CW1 = 陕煤二厂 - 常温1号仓库
/// HCFR1 = 陕煤二厂 - 分容1号仓库
/// GW2 = 陕煤二厂 - 高温2号仓库
/// ZJ1 = 陕煤二厂 - 正极卷仓
/// FJ1 = 陕煤二厂 - 负极卷仓
///
public enum WarehouseEnum { /// /// 高温1号仓库 /// [Description("高温1号仓库")] GW1 = 1, /// /// 常温1号仓库 /// [Description("常温1号仓库")] CW1 = 2, /// /// 分容1号仓库 /// [Description("分容1号仓库")] HCFR1 = 3, /// /// 高温2号仓库 /// [Description("高温2号仓库")] GW2 = 4, /// /// 正极卷仓 /// [Description("正极卷仓")] ZJ1 = 5, /// /// 负极卷仓 /// [Description("负极卷仓")] FJ1 = 6 } }