using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Volo.Abp.Application.Services; namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Qad; /// /// QAD物料(Part) /// public interface IPartAppService : IApplicationService { /// /// 取QAD物料(Part) /// /// QAD物料(Part) /// Task> AddAsync(PartInput input); }