using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Entity.SysEntity; namespace WMS.IDAL.ISysInterface { public interface IStorageLocatRepository : IBaseRepository { /// /// 编辑储位信息 /// /// /// 状态 /// 标识 /// 存储环境 /// 操作人 /// bool EditStorageLocat(int id, string status, string flag, string temperature, int userId); /// /// 编辑储位信息集合 /// /// /// 状态 /// 标识 /// 操作人 /// bool EditStorageLocatList(List id, string status, string flag, int userId); /// /// 获取储位信息 /// /// wareHouseNo">仓库 /// 排 /// List GetStorageLocatLists(string wareHouseNo, string row); /// /// 获取最大层级 /// /// 仓库号 /// int GetMaxLayer(string wareHouseNo); /// /// 获取该仓库排数 /// /// 仓库号 /// List GetStorageLocatRow(string wareHouseNo); /// /// 获取该仓库深度 /// /// 仓库号 /// List GetDepth(string wareHouseNo); } }