using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Volo.Abp.Application.Services; namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Qad; /// /// QAD客户(Customer) /// public interface ICustomerAppService : IApplicationService { /// /// 取QAD客户(Customer) /// /// QAD客户(Customer) /// Task> AddAsync(CustInput input); }