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

  1. using BPA.SAAS.Manage.Application.Device.Dtos.Device;
  2. using BPA.SAAS.Manage.Core.Base;
  3. using BPA.SAAS.Manage.Core.Device;
  4. using BPA.SAAS.Manage.Core.Product;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace BPA.SAAS.Manage.Application.Device.Interface
  11. {
  12. public interface IProductService
  13. {
  14. Task<PageUtil> GetProductPage(ProductQueryInputDto inputDto);
  15. Task<List<BPA_Product>> GetProductList();
  16. Task<BPA_Product> GetProduct(string productId);
  17. Task<bool> AddProduct(ProductBaseDto inputDto);
  18. Task<bool> DeProduct(List<string> inputList);
  19. Task<bool> UpdateProduct(ProductBaseDto inputDto);
  20. Task<bool> UpdateDeviceVesionSatatus(ProductSatatusDto inputDto);
  21. }
  22. }