基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
787 B

  1. using BPA.SAAS.Manage.Application.Device.Dtos.Device;
  2. using BPA.SAAS.Manage.Core.Base;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Application.Device.Interface
  9. {
  10. public interface ITechnologyService
  11. {
  12. Task<PageUtil> GetTechnologyExportRecodePage(TechnologyQueryInputDto inputDto);
  13. Task<bool> DeTechnologyExportRecode(string inputList);
  14. /// <summary>
  15. /// 根据设备id查询设备工艺信息
  16. /// </summary>
  17. /// <param name="deviceId"></param>
  18. /// <returns></returns>
  19. Task<List<TechnologyView>> GetTechnologyList(string deviceId);
  20. Task<List<TechnologyView>> GetTechnologyList_alm(string deviceId);
  21. }
  22. }