54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Data;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.IBase
|
|||
|
|
{
|
|||
|
|
public interface IDecStsData
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据配置查询站台
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="desciption"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetStationErpCong(string desciption);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
DataTable GetStationRk(string stand);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 更新输送机模式
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="mode"></param>
|
|||
|
|
/// <param name="decID"></param>
|
|||
|
|
void WriteCayMode(string mode, string decID);
|
|||
|
|
DataTable GetDecIPDecData(string pcIp);
|
|||
|
|
int UpdateDecStsSet(string decID, string LedIp, string pcip, string dec, string optype);
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询设备任务
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetDecStsData();
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取设备信息
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataTable GetDecDataTable();
|
|||
|
|
|
|||
|
|
DataTable GetLogError(string STORAGE_ID);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取库位
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
DataSet GetDecLocSts(string decid, string row);
|
|||
|
|
|
|||
|
|
DataTable GetDecSts(string decId);
|
|||
|
|
}
|
|||
|
|
}
|