6 天以前 f569e2257372a2f940aace9ad151fd758196eb9a
src/main/java/com/ruoyi/basic/mapper/CustomerFollowUpMapper.java
@@ -2,6 +2,10 @@
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>
@@ -13,4 +17,10 @@
 * @since 2026/03/04 14:46
 */
public interface CustomerFollowUpMapper extends BaseMapper<CustomerFollowUp> {
    /**
     * 查询洽谈进度导出数据(客户关联跟进记录)
     */
    List<CustomerFollowUpExportVo> selectFollowUpExportList(@Param("customerName") String customerName,
                                                             @Param("customerType") String customerType);
}