42 lines
1.1 KiB
C#
42 lines
1.1 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.OrderManage.OrderCustomerAddreses;
|
|
using ARW.Model.Models.Business.OrderManage.OrderCustomerAddreses;
|
|
using ARW.Model.Vo.Business.OrderManage.OrderCustomerAddreses;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.OrderManage.OrderCustomerAddreses
|
|
{
|
|
/// <summary>
|
|
/// 订单收货地址记录接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-08-29
|
|
/// </summary>
|
|
public interface IOrderCustomerAddressService : IBaseService<OrderCustomerAddress>
|
|
{
|
|
/// <summary>
|
|
/// 获取订单收货地址记录分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<OrderCustomerAddressVo>> GetOrderCustomerAddressList(OrderCustomerAddressQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改订单收货地址记录
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateOrderCustomerAddress(OrderCustomerAddress parm);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|