46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 店铺地址接口类
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-15
|
|
/// </summary>
|
|
public interface IShopAddressService : IBaseService<ShopAddress>
|
|
{
|
|
/// <summary>
|
|
/// 获取店铺地址分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<ShopAddressVo>> GetShopAddressList(ShopAddressQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改店铺地址
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateShopAddress(ShopAddress parm);
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Excel导出
|
|
/// </summary>
|
|
Task<List<ShopAddressVo>> HandleExportData(List<ShopAddressVo> data);
|
|
|
|
|
|
}
|
|
}
|