6 天以前 f569e2257372a2f940aace9ad151fd758196eb9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.basic.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.basic.pojo.CustomerFollowUp;
import com.ruoyi.basic.vo.CustomerFollowUpExportVo;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <br>
 * 客户跟进mapper
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/04 14:46
 */
public interface CustomerFollowUpMapper extends BaseMapper<CustomerFollowUp> {
 
    /**
     * 查询洽谈进度导出数据(客户关联跟进记录)
     */
    List<CustomerFollowUpExportVo> selectFollowUpExportList(@Param("customerName") String customerName,
                                                             @Param("customerType") String customerType);
}