using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Abp.Application.Services; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.Common.Dto; using ShwasherSys.ProductStoreInfo; using ShwasherSys.StoreQuery.Dto; namespace ShwasherSys.StoreQuery { public interface IStoreStatisticsApplicationService: IIwbAsyncCrudAppService { Task> QueryProductEnterOutRecord(string productNo); Task> QueryEnterOutRecord(PagedRequestDto input); Task> QueryCurrentStoreTotal(PagedRequestDto input); Task QueryStoreTotalByProduct(string pcProductNo); Task ExportExcel(List input); Task> QueryEnterOutRecordTmp(List input); Task> QuerySemiEnterOutRecord(string productNo); Task> QuerySemiCurrentStoreTotal(PagedRequestDto input); Task QuerySemiCurrentStoreTotalByProduct(string pcProductNo); } }