using System;
using System.Collections.Generic;
using System.Text;
namespace WIDESEA_Common.StationEnum
{
public enum StationType
{
///
/// 入库站台
///
InboundStation,
///
/// 出库站台
///
OutboundStation,
///
/// 取货站台
///
SCTakeStation,
///
/// 放货站台
///
SCPutStation,
///
/// 回流站台
///
ReturnStation,
///
/// 特殊站台
///
SpecialStation,
///
/// 监控站台
///
MonitoringStation,
///
/// 目的站台
///
TargetStation,
///
/// 限制管控
///
LimitControlsStation
}
}