using Model.ModelDto.SysDto; using Model.ModelVm.SysVm; 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, string temperature, int userId); /// /// 获取该仓库排数 /// /// 仓库号 /// List GetStorageLocatRow(string wareHouseNo); /// /// 获取该仓库深度 /// /// 仓库号 /// List GetDepth(string wareHouseNo); } }