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

@@ -151,7 +151,7 @@ public abstract class BaseRepository<TEntity>
public async Task<List<TEntity>> AddBatchAsync(List<TEntity> entities)
public async Task<List<TEntity>> AddAsync(List<TEntity> entities)
{
var stopwatch = new Stopwatch();
stopwatch.Start();