ISyncDOPAppService.cs 460 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Volo.Abp.Application.Services;
  7. namespace Business.DOP
  8. {
  9. public interface ISyncDOPAppService : IApplicationService
  10. {
  11. /// <summary>
  12. /// 成品库存监控
  13. /// </summary>
  14. /// <param name="id"></param>
  15. /// <returns></returns>
  16. string SyncPlatformFinishedProductMonitoring();
  17. }
  18. }