1234567891011121314151617181920212223242526272829303132 |
- using Ant.Core.WebApi.Model;
- using Central.Control.WebApi.Models.Response;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Central.Control.WebApi.Service.Interface
- {
- /// <summary>
- ///
- /// </summary>
- public interface IProductService
- {
- /// <summary>
- ///
- /// </summary>
- /// <returns></returns>
- ApiResult<string> Test();
- /// <summary>
- /// 商品列表
- /// </summary>
- /// <param name="kw"></param>
- /// <param name="skip"></param>
- /// <param name="limit"></param>
- /// <returns></returns>
- PagedApiResult<ProductResponseDto> Query(string kw = "", int skip = 0, int limit = 1);
- }
- }
|