using System;
using System.Collections.Generic;
using System.Text;
namespace WIDESEA_Common
{
///
/// 站台管理
///
public enum stationType
{
///
/// 下料
///
Inbound = 1,
///
/// 上料
///
Outbound=2,
///
/// 空托下料
///
EmptyInbound = 3,
///
/// 空托上料
///
EmptyOutbound = 4,
}
}