// +---------------------------------------------------------------------- namespace crmeb\jobs; use app\common\repositories\store\product\ProductCopyRepository; use crmeb\interfaces\JobInterface; use think\facade\Log; class DownloadProductCopyImage implements JobInterface { public function fire($job, $data) { try { app()->make(ProductCopyRepository::class)->downloadImage($data['id'], $data['data']); } catch (\Exception $e) { Log::info('图片采集失败,商品ID: ' . $data['id']); } $job->delete(); } public function failed($data) { } }