refactor:将AddBathAsync改为AddAsync

This commit is contained in:
2025-10-21 13:04:11 +08:00
parent 3116e4ce92
commit 5a3242a90b
20 changed files with 32 additions and 32 deletions

View File

@@ -110,10 +110,10 @@ public class NlogRepository : BaseRepository<DbNlog>, INlogRepository
/// </summary>
/// <param name="entities">要添加的Nlog日志实体列表。</param>
/// <returns>添加的Nlog日志实体列表。</returns>
public new async Task<List<Core.Models.Nlog>> AddBatchAsync(List<Core.Models.Nlog> entities)
public new async Task<List<Core.Models.Nlog>> AddAsync(List<Core.Models.Nlog> entities)
{
var dbEntities = _mapper.Map<List<DbNlog>>(entities);
var addedEntities = await base.AddBatchAsync(dbEntities);
var addedEntities = await base.AddAsync(dbEntities);
return _mapper.Map<List<Core.Models.Nlog>>(addedEntities);
}