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 { /// /// 客户收货地址接口类Api /// /// @author admin /// @date 2023-06-09 /// public interface ICustomerAddressServiceApi : IBaseService { /// /// 获取客户收货地址分页列表(Api) /// /// /// Task> GetCustomerAddressListApi(CustomerAddressQueryDtoApi parm); /// /// 获取客户收货地址详情(Api) /// /// /// Task GetCustomerAddressDetails(CustomerAddressDtoApi parm); /// /// 添加或修改客户收货地址 /// /// /// Task AddOrUpdateCustomerAddress(CustomerAddress parm, int IsDefault); } }