refactor: ai+人工重构优化 framework
This commit is contained in:
@@ -3,8 +3,17 @@ using Volo.Abp.Application.Services;
|
||||
|
||||
namespace Yi.Framework.Ddd.Application.Contracts
|
||||
{
|
||||
public interface IDeletesAppService<in TKey> : IDeleteAppService< TKey> , IApplicationService, IRemoteService
|
||||
/// <summary>
|
||||
/// 批量删除服务接口
|
||||
/// </summary>
|
||||
/// <typeparam name="TKey">主键类型</typeparam>
|
||||
public interface IDeletesAppService<in TKey> : IDeleteAppService<TKey>, IApplicationService, IRemoteService
|
||||
{
|
||||
/// <summary>
|
||||
/// 批量删除实体
|
||||
/// </summary>
|
||||
/// <param name="ids">要删除的实体ID集合</param>
|
||||
/// <returns>删除操作的异步任务</returns>
|
||||
Task DeleteAsync(IEnumerable<TKey> ids);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user