using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model;
using ARW.Model.Dto.Business.ShopManager.ShopAddresss;
using ARW.Model.Models.Business.ShopManager.ShopAddresss;
using ARW.Model.Vo.Business.ShopManager.ShopAddresss;
namespace ARW.Service.Business.IBusinessService.ShopManager.ShopAddresss
{
///
/// 店铺地址接口类
///
/// @author lwh
/// @date 2023-06-15
///
public interface IShopAddressService : IBaseService
{
///
/// 获取店铺地址分页列表
///
///
///
Task> GetShopAddressList(ShopAddressQueryDto parm);
///
/// 添加或修改店铺地址
///
///
///
Task AddOrUpdateShopAddress(ShopAddress parm);
///
/// Excel导出
///
Task> HandleExportData(List data);
}
}