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, /// /// 成品自动取站台 /// StationType_ProductBackTake = 95, /// /// 成品自动补框 /// StationType_ProductBack = 98, /// /// 码盘机站台 /// StationType_PakcPallet = 99, } }