基础服务api
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

24 lignes
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. }