using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using EFCore.BulkExtensions; using Volo.Abp.Domain.Repositories; namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.EOS; public interface IPlanRepository : IRepository { Task BulkUpdateAsync(IList entities, BulkConfig bulkConfig = null, Action progress = null, Type type = null, CancellationToken cancellationToken = default); }