using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace WMS.IData.IBase
{
///
/// 立体库站台
///
public interface IBaseLtkSts
{
///
/// 获取站台
///
///
DataTable GetStandSts(string sts);
///
/// 更新站台Status
///
void UpStandSts(string stdId, string sts);
string GetStandNext();
///
/// 返回空闲的站台
///
///
///
string GetStandNext(string standType);
}
}