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