You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.3 KiB
60 lines
1.3 KiB
3 months ago
|
<?php
|
||
|
|
||
|
|
||
|
namespace app\jobs\work;
|
||
|
|
||
|
|
||
|
use app\services\work\WorkMomentSendResultServices;
|
||
|
use app\services\work\WorkMomentServices;
|
||
|
use crmeb\basic\BaseJobs;
|
||
|
use crmeb\traits\QueueTrait;
|
||
|
|
||
|
/**
|
||
|
* Class WorkMomentJob
|
||
|
* @package app\jobs\work
|
||
|
*/
|
||
|
class WorkMomentJob extends BaseJobs
|
||
|
{
|
||
|
|
||
|
use QueueTrait;
|
||
|
|
||
|
/**
|
||
|
* @param $jobid
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function task($jobid)
|
||
|
{
|
||
|
/** @var WorkMomentServices $service */
|
||
|
$service = app()->make(WorkMomentServices::class);
|
||
|
return $service->getTaskInfo($jobid);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取任务详情
|
||
|
* @param $momentId
|
||
|
* @param $cursor
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getTaskPage($momentId, $cursor)
|
||
|
{
|
||
|
/** @var WorkMomentSendResultServices $service */
|
||
|
$service = app()->make(WorkMomentSendResultServices::class);
|
||
|
return $service->getTaskInfo($momentId, $cursor);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取某个成员发送朋友圈详情
|
||
|
* @param $id
|
||
|
* @param $momentId
|
||
|
* @param $userId
|
||
|
* @param $cursor
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function getCustomerPage($id, $momentId, $userId, $cursor)
|
||
|
{
|
||
|
/** @var WorkMomentSendResultServices $service */
|
||
|
$service = app()->make(WorkMomentSendResultServices::class);
|
||
|
return $service->getCustomerList((int)$id, $momentId, $userId, $cursor);
|
||
|
}
|
||
|
}
|