using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common { public enum StationTypeEnum { /// /// 入库站台 /// StationType_OnlyInbound = 1, /// /// 出库站台 /// StationType_OnlyOutbound = 2, /// /// 出入库站台 /// StationType_InboundAndOutbound = 3, /// /// 出入库口 /// StationType_InStartAndOutEnd = 33, } }