using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.AMS.Ex.Interface { /// /// Autobom系统接口 /// public interface IAutoBomInterface { /// /// 获取货位信息 /// /// DataTable GetLocationList(); /// /// 获取货位与AGV站点关系信息 /// /// DataTable GetLocationAgvCodeList(); /// /// 获取数据字典 /// /// DataTable GetDictList(); /// /// 根据仓库获取排 /// /// /// DataTable GetAllRow(string stockName); /// /// 获取货位的分页数据 /// /// /// /// /// /// /// /// DataTable GetLocationList(int pageIndex, int pageSize, string strWhere, string orderBy, out int total, out int totalPage); /// /// 获取仓库 /// /// DataTable GetStock(); DataTable GetDataTable(string sql); } }