| 12345678910111213141516171819202122232425 |
- using Abp.Application.Services;
- using Abp.Dependency;
- using Business.ResourceExamineManagement;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.DOP
- {
- //DOP
- public class SyncDOPAppService : ApplicationService, ISyncDOPAppService, ITransientDependency
- {
- /// <summary>
- /// 平台成品监控
- /// </summary>
- /// <returns></returns>
- /// <exception cref="NotImplementedException"></exception>
- public string SyncPlatformFinishedProductMonitoring()
- {
- throw new NotImplementedException();
- }
- }
- }
|