ISyncDOPAppService.cs 973 B

1234567891011121314151617181920212223242526272829303132
  1. using Business.Dto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Volo.Abp.Application.Services;
  8. namespace Business.DOP
  9. {
  10. public interface ISyncDOPAppService : IApplicationService
  11. {
  12. /// <summary>
  13. /// 海王成品库存监控
  14. /// </summary>
  15. /// <param name="id"></param>
  16. /// <returns></returns>
  17. Task<string> SyncPlatformFinishedProductMonitoringHW(List<PlatformInventoryDto> platformInventoryDtoList);
  18. /// <summary>
  19. /// 海王成品库存监控
  20. /// </summary>
  21. /// <param name="id"></param>
  22. /// <returns></returns>
  23. Task<string> SyncPlatformFinishedProductMonitoringGK(List<PlatformInventoryDto> platformInventoryDtoList);
  24. /// <summary>
  25. /// 库存监控
  26. /// </summary>
  27. /// <returns></returns>
  28. Task<string> InventoryMonitoring(InputDto input);
  29. }
  30. }