Blame view

fw-valhalla-service/src/main/java/cn/fw/valhalla/service/data/PubCluePoolService.java 901 Bytes
1331548a   张志伟   :sparkles:
1
2
3
  package cn.fw.valhalla.service.data;
  
  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
9
  import com.baomidou.mybatisplus.extension.service.IService;
  
bd5cb2d8   张志伟   feature(*): 修复成交池查询
10
11
  import java.util.List;
  
1331548a   张志伟   :sparkles:
12
13
14
15
16
17
18
19
20
21
  /**
   * 公共池线索
   *
   * @author : kurisu
   * @version : 1.0
   * @className : PubCluePoolService
   * @description : 公共池线索
   * @date : 2023-03-20 10:36
   */
  public interface PubCluePoolService extends IService<PubCluePool> {
bd5cb2d8   张志伟   feature(*): 修复成交池查询
22
23
24
      List<FollowPoolDTO> followList(FollowPoolQueryVO queryVO);
  
      long followListCount(FollowPoolQueryVO queryVO);
bfac3874   xianpengcheng   public_report_dat...
25
26
27
28
29
30
31
  
      /**
       * 查询站岗分配
       * @param dto
       * @return
       */
      List<PubCluePoolReportDTO> countPubCluePoolList(PubCluePoolReportQueryDTO dto);
1331548a   张志伟   :sparkles:
32
  }