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.Customers;
using ARW.Model.Models.Business.Custom.Customers;
using ARW.Model.Vo.Api.Custom.Customers;
namespace ARW.Service.Api.IBusinessService.Custom.Customers
{
///
/// 小程序客户接口类Api
///
/// @author lwh
/// @date 2023-06-07
///
public interface ICustomerServiceApi : IBaseService
{
///
/// 获取小程序客户详情(Api)
///
///
///
Task GetCustomerDetails(CustomerQueryDtoApi parm);
///
/// 编辑客户信息
///
///
///
Task UpdateCustomer(Customer parm);
}
}