Blame view

fw-valhalla-dao/src/main/java/cn/fw/valhalla/dao/mapper/PubCluePoolMapper.java 1.3 KB
1331548a   张志伟   :sparkles:
1
2
3
  package cn.fw.valhalla.dao.mapper;
  
  import cn.fw.valhalla.domain.db.pub.PubCluePool;
bd5cb2d8   张志伟   feature(*): 修复成交池查询
4
  import cn.fw.valhalla.domain.dto.FollowPoolDTO;
bfac3874   xianpengcheng   public_report_dat...
5
6
  import cn.fw.valhalla.domain.dto.PubCluePoolReportDTO;
  import cn.fw.valhalla.domain.dto.PubCluePoolReportQueryDTO;
bd5cb2d8   张志伟   feature(*): 修复成交池查询
7
  import cn.fw.valhalla.domain.query.FollowPoolQueryVO;
1331548a   张志伟   :sparkles:
8
  import com.baomidou.mybatisplus.core.mapper.BaseMapper;
bd5cb2d8   张志伟   feature(*): 修复成交池查询
9
  import org.apache.ibatis.annotations.Param;
1331548a   张志伟   :sparkles:
10
11
  import org.springframework.stereotype.Repository;
  
bd5cb2d8   张志伟   feature(*): 修复成交池查询
12
13
  import java.util.List;
  
1331548a   张志伟   :sparkles:
14
15
16
17
18
19
20
21
22
23
24
  /**
   * 公共池线索
   *
   * @author : kurisu
   * @version : 1.0
   * @className : PubCluePoolMapper
   * @description : 公共池线索
   * @date : 2023-03-20 10:34
   */
  @Repository
  public interface PubCluePoolMapper extends BaseMapper<PubCluePool> {
bd5cb2d8   张志伟   feature(*): 修复成交池查询
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
      /**
       * 跟进池
       *
       * @param startIndex
       * @param pageSize
       * @param queryVO
       * @return
       */
      List<FollowPoolDTO> followList(@Param("startIndex") Integer startIndex, @Param("pageSize") Integer pageSize, @Param("condition") FollowPoolQueryVO queryVO);
  
      /**
       * 查询跟进池总数
       *
       * @param queryVO
       * @return
       */
      Long followListCount(@Param("condition") FollowPoolQueryVO queryVO);
bfac3874   xianpengcheng   public_report_dat...
42
43
44
45
46
47
48
  
      /**
       * 查询站岗分配
       * @param dto
       * @return
       */
      List<PubCluePoolReportDTO> countPubCluePoolList(PubCluePoolReportQueryDTO  dto);
1331548a   张志伟   :sparkles:
49
  }