using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model;
using ARW.Model.Dto.Business.OrderManage.OrderCustomerAddreses;
using ARW.Model.Models.Business.OrderManage.OrderCustomerAddreses;
using ARW.Model.Vo.Business.OrderManage.OrderCustomerAddreses;
namespace ARW.Service.Business.IBusinessService.OrderManage.OrderCustomerAddreses
{
///
/// 订单收货地址记录接口类
///
/// @author lwh
/// @date 2023-08-29
///
public interface IOrderCustomerAddressService : IBaseService
{
///
/// 获取订单收货地址记录分页列表
///
///
///
Task> GetOrderCustomerAddressList(OrderCustomerAddressQueryDto parm);
///
/// 添加或修改订单收货地址记录
///
///
///
Task AddOrUpdateOrderCustomerAddress(OrderCustomerAddress parm);
}
}