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

@@ -50,5 +50,5 @@ public interface IBaseRepository<T> where T : class
/// 异步批量添加实体。
/// </summary>
/// <param name="entities">要添加的实体列表。</param>
Task<List<T>> AddBatchAsync(List<T> entities);
Task<List<T>> AddAsync(List<T> entities);
}