using CMS.Plugin.$NameSpacePath$.Application.Contracts.Dtos.$EntityName$s;
using Volo.Abp.Application.Services;
namespace CMS.Plugin.$NameSpacePath$.Application.Contracts.Services;
///
/// $ChinaComment$Ó¦Ó÷þÎñ½Ó¿Ú
///
public interface I$EntityName$AppService : ICrudAppService<$EntityName$Dto, Guid, Get$EntityName$Input, $EntityName$CreateDto, $EntityName$UpdateDto>
{
///
/// ¿Ë¡$ChinaComment$
///
///
///
Task> CloneAsync(IEnumerable ids);
///
/// ɾ³ý$ChinaComment$
///
///
///
Task DeleteManyAsync(IEnumerable ids);
///
/// µ÷ÕûÅÅÐò$ChinaComment$
///
///
///
///
Task AdjustSortAsync(Guid id, int sort);
///
/// µ¼Èë$ChinaComment$
///
///
///
Task ImportAsync($EntityName$sImportModel input);
///
/// µ¼³ö$ChinaComment$
///
///
///
Task<(Dictionary Sheets, string FileName)> ExportAsync(Get$EntityName$Input input);
}