6 天以前 f569e2257372a2f940aace9ad151fd758196eb9a
src/main/java/com/ruoyi/basic/service/CustomerFollowUpService.java
@@ -5,8 +5,10 @@
import com.ruoyi.basic.pojo.CustomerFollowUp;
import com.ruoyi.basic.dto.CustomerFollowUpFileDto;
import com.ruoyi.basic.pojo.CustomerFollowUpFile;
import com.ruoyi.basic.vo.CustomerFollowUpExportVo;
import org.springframework.web.multipart.MultipartFile;
import java.util.Collection;
import java.util.List;
/**
@@ -52,10 +54,15 @@
    /**
     * 根据附件ID集合获取附件列表
     */
    List<CustomerFollowUpFile> getFollowUpFilesByIds(List<Long> fileIds);
    List<CustomerFollowUpFile> getFollowUpFilesByIds(Collection<Long> fileIds);
    /**
     * 获取跟进详情
     */
    CustomerFollowUpDto getFollowUpWithFiles(Integer id);
    /**
     * 查询洽谈进度导出数据
     */
    List<CustomerFollowUpExportVo> selectFollowUpExportList(String customerName, String customerType);
}