5 天以前 e146067ae373f9385b9ddbb57c6eb7a933bf2561
src/main/java/com/ruoyi/basic/service/CustomerFollowUpService.java
@@ -3,9 +3,12 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.basic.dto.CustomerFollowUpDto;
import com.ruoyi.basic.pojo.CustomerFollowUp;
import org.springframework.transaction.annotation.Transactional;
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;
/**
@@ -41,7 +44,7 @@
    /**
     * 添加跟进附件
     */
    void addFollowUpFiles(List<MultipartFile> files, Integer followUpId);
    List<CustomerFollowUpFileDto> addFollowUpFiles(List<MultipartFile> files, Integer followUpId);
    /**
     * 删除跟进附件
@@ -49,7 +52,17 @@
    void deleteFollowUpFile(Integer fileId);
    /**
     * 根据附件ID集合获取附件列表
     */
    List<CustomerFollowUpFile> getFollowUpFilesByIds(Collection<Long> fileIds);
    /**
     * 获取跟进详情
     */
    CustomerFollowUpDto getFollowUpWithFiles(Integer id);
    /**
     * 查询洽谈进度导出数据
     */
    List<CustomerFollowUpExportVo> selectFollowUpExportList(String customerName, String customerType);
}