using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.WareHouseEnum
{
///
public enum WarehouseEnum
{
///
/// 原材料仓
///
[Description("原材料仓")]
YMYL = 1,
///
/// 成品仓
///
[Description("成品仓")]
YMCP = 2,
}
public enum RoadwayEnum
{
///
/// 堆垛机
///
[Description("堆垛机")]
SCstacker = 1,
///
/// 成品入库口
///
[Description("成品入库口")]
ProductInbound = 2,
///
/// 产线成品入库口
///
[Description("产线成品入库口")]
ProductionLineProductInbound = 3,
///
/// 成品出库口
///
[Description("成品出库口")]
ProductOutbound = 4,
///
/// 产线成品出库口
///
[Description("产线成品出库口")]
ProductionLineProductOutbound = 5,
///
/// 原材料出入库口
///
[Description("原材料出入库口")]
RawMaterialInOutbound = 6,
///
/// 产线出入库口
///
[Description("产线出入库口")]
ProductionLineInOutbound = 7,
///
/// 异常出库口
///
[Description("异常出库口")]
AbnormalOutbound = 8
}
}