45 lines
1.3 KiB
C#
45 lines
1.3 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.Api.Custom.CustomerAddresses;
|
|
using ARW.Model.Models.Business.Custom.CustomerAddresses;
|
|
using ARW.Model.Vo.Api.Custom.CustomerAddresses;
|
|
|
|
namespace ARW.Service.Api.IBusinessService.Custom.CustomerAddresses
|
|
{
|
|
/// <summary>
|
|
/// 客户收货地址接口类Api
|
|
///
|
|
/// @author admin
|
|
/// @date 2023-06-09
|
|
/// </summary>
|
|
public interface ICustomerAddressServiceApi : IBaseService<CustomerAddress>
|
|
{
|
|
/// <summary>
|
|
/// 获取客户收货地址分页列表(Api)
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<List<CustomerAddressVoApi>> GetCustomerAddressListApi(CustomerAddressQueryDtoApi parm);
|
|
|
|
/// <summary>
|
|
/// 获取客户收货地址详情(Api)
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> GetCustomerAddressDetails(CustomerAddressDtoApi parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改客户收货地址
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateCustomerAddress(CustomerAddress parm, int IsDefault);
|
|
|
|
}
|
|
}
|