Blame view

netcore/src/Modularity/Extend/NCC.Extend.Interfaces/ILqKhxxService.cs 756 Bytes
920afb29   “wangming”   修改了一摩尔的东西,我一个人在客户...
1
2
3
4
5
  using System.Threading.Tasks;
  using NCC.Common.Filter;
  using NCC.Extend.Entitys.Dto.LqKhxx;
  
  namespace NCC.Extend.Interfaces.LqKhxx
96009bc9   hexiaodong   hxd
6
7
8
  {
      public interface ILqKhxxService
      {
920afb29   “wangming”   修改了一摩尔的东西,我一个人在客户...
9
10
11
12
13
14
15
16
17
18
19
20
21
          /// <summary>
          /// 获取线索池客户列表
          /// </summary>
          /// <param name="input">查询参数</param>
          /// <returns>线索池客户列表</returns>
          Task<PageResult<LqKhxxListOutput>> GetLeadsPoolList(LqKhxxListQueryInput input);
  
          /// <summary>
          /// 获取客户订单类型(首单/升单)
          /// </summary>
          /// <param name="customerId">客户ID</param>
          /// <returns>客户订单类型信息</returns>
          Task<LqKhxxOrderTypeOutput> GetCustomerOrderType(string customerId);
96009bc9   hexiaodong   hxd
22
      }
920afb29   “wangming”   修改了一摩尔的东西,我一个人在客户...
23
  }