using System; using System.Collections.Generic; using System.Text; namespace WIDESEA.Common { public enum Station { /// /// 入库口 /// InboundStation = 1001, /// /// 出库口 /// OutboundStation = 1011, /// /// 入库站台 /// InboundSCStation = 1003, /// /// 出库站台 /// OutboundSCStation = 1009, /// /// 质检站台 /// QualityCheckStation = 120 } }