基础服务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.
 
 

20 lines
720 B

  1. using BPA.SAAS.Manage.Application.Device.Dtos.WarehouseTemplate;
  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 IWarehouseTemplateService
  11. {
  12. Task<PageUtil> GetWarehouseTemplatePage(WarehouseTemplateQueryInputDto inputDto);
  13. Task<List<WarehouseTemplateView>> GetWarehouseTemplateList(string deviceId);
  14. Task<bool> AddWarehouseTemplate(WarehouseTemplatDto inputDto);
  15. Task<bool> DeWarehouseTemplate(List<string> inputList);
  16. Task<bool> UpdateWarehouseTemplate(WarehouseTemplatDto inputDto);
  17. }
  18. }