| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.basic.dto.CustomerFollowUpDto; |
| | | import com.ruoyi.basic.dto.CustomerFollowUpFileDto; |
| | | import com.ruoyi.basic.vo.CustomerFollowUpExportVo; |
| | | import com.ruoyi.basic.mapper.CustomerFollowUpMapper; |
| | | import com.ruoyi.basic.pojo.CustomerFollowUp; |
| | | import com.ruoyi.basic.pojo.CustomerFollowUpFile; |
| | |
| | | } |
| | | |
| | | List<CustomerFollowUp> followUps = list(new LambdaQueryWrapper<CustomerFollowUp>() |
| | | .eq(CustomerFollowUp::getCustomerPrivatePoolId, customerId)); |
| | | .eq(CustomerFollowUp::getCustomerId, customerId)); |
| | | |
| | | if (followUps != null && !followUps.isEmpty()) { |
| | | for (CustomerFollowUp followUp : followUps) { |
| | |
| | | |
| | | return dto; |
| | | } |
| | | |
| | | @Override |
| | | public List<CustomerFollowUpExportVo> selectFollowUpExportList(String customerName, String customerType) { |
| | | return baseMapper.selectFollowUpExportList(customerName, customerType); |
| | | } |
| | | } |