using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model;
using ARW.Model.Dto.Api.ShopManager.Shops;
using ARW.Model.Models.Business.ShopManager.Shops;
using ARW.Model.Vo.Api.ShopManager.Shops;
using ARW.Model.Vo.Business.GoodsManager.GoodsCategorys;
namespace ARW.Service.Api.IBusinessService.ShopManager.Shops
{
///
/// 店铺接口类Api
///
/// @author lwh
/// @date 2023-06-12
///
public interface IShopServiceApi : IBaseService
{
///
/// 获取经营类目列表(一级类目)
///
///
Task> GetFirstGoodsCategoryList();
///
/// 获取店铺分页列表(Api)
///
///
///
Task> GetShopListApi(ShopQueryDtoApi parm);
///
/// 获取店铺详情(Api)
///
///
///
Task GetShopDetails(ShopDtoApi parm);
///
/// 添加或修改店铺
///
///
///
Task AddOrUpdateShop(Shop parm);
}
}