using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Domain.Services; namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.EOS; public interface IShipManager : IDomainService { Task CheckIsHistoryShip(string shipBillNo); Task> GetToBeProcessedListAsync(); Task UpdateProcessedListAsync(List entities); }