using Estsh.Core.Base; using Estsh.Core.Models; using Estsh.Core.Repositories; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Estsh.Core.Wms.IRepositories { public interface IStockRepository : IBaseRepository { /// /// 获取箱条码信息 /// /// /// public SysStock GetCartonInfo(string cartonNo); /// /// 获取库位对应的库存信息 /// /// /// public List GetLocateStockInfo(string locateName); } }