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
}
}