35 lines
754 B
C#
35 lines
754 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace WMS.IData.IBase
|
|
{
|
|
/// <summary>
|
|
/// 立体库站台
|
|
/// </summary>
|
|
public interface IBaseLtkSts
|
|
{
|
|
/// <summary>
|
|
/// 获取站台
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
DataTable GetStandSts(string sts);
|
|
|
|
/// <summary>
|
|
/// 更新站台Status
|
|
/// </summary>
|
|
void UpStandSts(string stdId, string sts);
|
|
|
|
string GetStandNext();
|
|
|
|
/// <summary>
|
|
/// 返回空闲的站台
|
|
/// </summary>
|
|
/// <param name="standType"></param>
|
|
/// <returns></returns>
|
|
string GetStandNext(string standType);
|
|
}
|
|
}
|