| 12345678910111213141516171819 |
- 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>
- string SyncPlatformFinishedProductMonitoring();
- }
- }
|