46 lines
1.1 KiB
C#
46 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.Custom.Customers;
|
|
using ARW.Model.Models.Business.Custom.Customers;
|
|
using ARW.Model.Vo.Business.Custom.Customers;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.Custom.Customers
|
|
{
|
|
/// <summary>
|
|
/// 小程序客户接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-05
|
|
/// </summary>
|
|
public interface ICustomerService : IBaseService<Customer>
|
|
{
|
|
/// <summary>
|
|
/// 获取小程序客户分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<CustomerVo>> GetCustomerList(CustomerQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改小程序客户
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateCustomer(Customer parm);
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Excel导出
|
|
/// </summary>
|
|
Task<List<CustomerVo>> HandleExportData(List<CustomerVo> data);
|
|
|
|
|
|
}
|
|
}
|