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);
|
}
|