You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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<Plan, decimal>
|
|
|
|
{
|
|
|
|
Task BulkUpdateAsync(IList<Plan> entities, BulkConfig bulkConfig = null, Action<decimal> progress = null, Type type = null, CancellationToken cancellationToken = default);
|
|
|
|
}
|