using System.Threading.Tasks;
using NCC.Common.Filter;
using NCC.Extend.Entitys.Dto.LqKhxx;
namespace NCC.Extend.Interfaces.LqKhxx
{
public interface ILqKhxxService
{
///
/// 获取线索池客户列表
///
/// 查询参数
/// 线索池客户列表
Task> GetLeadsPoolList(LqKhxxListQueryInput input);
///
/// 获取客户订单类型(首单/升单)
///
/// 客户ID
/// 客户订单类型信息
Task GetCustomerOrderType(string customerId);
}
}