using Dapper; 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 IStockQueryRepository : IBaseRepository { public List GetStockQueryList(string part_spec); public List GetLocateListByScan(string part_spec); } }