| 1234567891011121314151617181920212223242526272829303132 |
- using Business.Dto;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Volo.Abp.Application.Services;
- namespace Business.DOP
- {
- public interface ISyncDOPAppService : IApplicationService
- {
- /// <summary>
- /// 海王成品库存监控
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- Task<string> SyncPlatformFinishedProductMonitoringHW(List<PlatformInventoryDto> platformInventoryDtoList);
- /// <summary>
- /// 海王成品库存监控
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- Task<string> SyncPlatformFinishedProductMonitoringGK(List<PlatformInventoryDto> platformInventoryDtoList);
- /// <summary>
- /// 库存监控
- /// </summary>
- /// <returns></returns>
- Task<string> InventoryMonitoring(InputDto input);
- }
- }
|