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 { /// /// 根据配置查询站台 /// /// /// DataTable GetStationErpCong(string desciption); DataTable GetStationRk(string stand); /// /// 更新输送机模式 /// /// /// void WriteCayMode(string mode, string decID); DataTable GetDecIPDecData(string pcIp); int UpdateDecStsSet(string decID, string LedIp, string pcip, string dec, string optype); /// /// 查询设备任务 /// /// DataTable GetDecStsData(); /// /// 获取设备信息 /// /// DataTable GetDecDataTable(); DataTable GetLogError(string STORAGE_ID); /// /// 获取库位 /// /// DataSet GetDecLocSts(string decid, string row); DataTable GetDecSts(string decId); } }