IProductService.cs 662 B

1234567891011121314151617181920212223242526
  1. using Ant.Core.WebApi.Model;
  2. using Central.Control.WebApi.Models.Response;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Central.Control.WebApi.Service.Interface
  9. {
  10. /// <summary>
  11. ///
  12. /// </summary>
  13. public interface IProductService
  14. {
  15. /// <summary>
  16. /// 商品列表
  17. /// </summary>
  18. /// <param name="kw"></param>
  19. /// <param name="skip"></param>
  20. /// <param name="limit"></param>
  21. /// <returns></returns>
  22. PagedApiResult<ProductResponseDto> Query(string kw = "", int skip = 0, int limit = 1);
  23. }
  24. }