using System.Collections.Generic; using System.Threading.Tasks; using System.Web.Mvc; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.ProductInfo.Dto; namespace ShwasherSys.ProductInfo { public interface IProductsAppService : IIwbAsyncCrudAppService { List GetProductPropertyList(string pcPropertyName); Task> GetQueryCustomerDefaultProduct(PagedRequestDto input); Task ExportExcel(List input); } }