using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using GxPress.Common.Page; using GxPress.Entity; using GxPress.Request.Sell; using GxPress.Request.Storehouse; using GxPress.Result.Storehouse; using Datory; namespace GxPress.Repository.Interface { /// /// 仓库 /// public interface IStorehouseRepository : IRepository { /// /// 添加信息 /// /// /// Task InsertAsync(IEnumerable storehouses); Task> GetPageListAsync(PageParameter request); Task GetStorehouseChartAsync(StorehouseRequest request); } }