package cn.iocoder.yudao.module.crm.job.customer;
|
|
import cn.iocoder.yudao.framework.quartz.core.handler.JobHandler;
|
import cn.iocoder.yudao.framework.tenant.core.job.TenantJob;
|
import cn.iocoder.yudao.module.crm.service.customer.CrmCustomerService;
|
import jakarta.annotation.Resource;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* 客户自动掉入公海 Job
|
*
|
* @author 芋道源码
|
*/
|
@Component
|
public class CrmCustomerAutoPutPoolJob implements JobHandler {
|
|
@Resource
|
private CrmCustomerService customerService;
|
|
@Override
|
@TenantJob
|
public String execute(String param) {
|
int count = customerService.autoPutCustomerPool();
|
return String.format("掉入公海客户 %s 个", count);
|
}
|
|
}
|