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;
/**
*
* 客户跟进mapper
*
*
* @author deslrey
* @version 1.0
* @since 2026/03/04 14:46
*/
public interface CustomerFollowUpMapper extends BaseMapper {
/**
* 查询洽谈进度导出数据(客户关联跟进记录)
*/
List selectFollowUpExportList(@Param("customerName") String customerName,
@Param("customerType") String customerType);
}