using System;
using System.Collections.Generic;
using System.Text;
namespace WIDESEA_Common
{
    /// 
    /// 站台管理
    /// 
    public enum StationManager
    {
        /// 
        /// 入库口
        /// 
        Inbound = 1,
        /// 
        /// 出库口
        /// 
        Outbound,
        /// 
        /// 分容出库段(异常排出口)
        /// 
        AbnormalOutStation,   //分容出库段(异常排出口)
        /// 
        /// NG工站放料口
        /// 
        NGPutStation,
        /// 
        /// NG工站取料口
        /// 
        NGTakeStation,
        /// 
        /// 空框入库口
        /// 
        EmptyInbound,
        /// 
        /// 空框出库口
        /// 
        EmptyOutbound,
        /// 
        /// 异常排出口(入库段)   --分容入库段
        /// 
        AbnormalInStation = 15,
        /// 
        /// 消防站台
        /// 
        FireStation = 100,
    }
}