using CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsArea; using Volo.Abp.Application.Services; namespace CMS.Plugin.HIAWms.Application.Contracts.Services; /// /// WmsArea应用服务 /// public interface IWmsAreaAppService : ICrudAppService { /// /// Clones the asynchronous. /// /// The ids. /// Task> CloneAsync(IEnumerable ids); /// /// Deletes the many asynchronous. /// /// The ids. /// Task DeleteManyAsync(IEnumerable ids); /// /// Adjusts the sort asynchronous. /// /// The identifier. /// The sort. /// Task AdjustSortAsync(Guid id, int sort); /// /// Imports the asynchronous. /// /// The input. /// Task ImportAsync(WmsAreasImportModel input); /// /// Exports the asynchronous. /// /// The input. /// Task<(Dictionary Sheets, string FileName)> ExportAsync(GetWmsAreaInput input); }