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 part) /// public interface ICustomerPartAppService : IApplicationService { /// /// 取QAD客户物料(Customer part) /// /// QAD客户物料(Customer part) /// Task> AddAsync(CustPartInput input); }