- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\jobs\work;
|
|
|
|
|
|
use app\services\work\WorkClientServices;
|
|
use crmeb\basic\BaseJobs;
|
|
use crmeb\traits\QueueTrait;
|
|
use think\db\exception\DataNotFoundException;
|
|
use think\db\exception\DbException;
|
|
use think\db\exception\ModelNotFoundException;
|
|
|
|
/**
|
|
* 同步客户
|
|
* Class WorkClientJob
|
|
* @package app\jobs\work
|
|
*/
|
|
class WorkClientJob extends BaseJobs
|
|
{
|
|
|
|
use QueueTrait;
|
|
|
|
/**
|
|
* @param $page
|
|
* @param $cursor
|
|
* @return bool
|
|
* @throws DataNotFoundException
|
|
* @throws DbException
|
|
* @throws ModelNotFoundException
|
|
*/
|
|
public function authClient($page, $cursor)
|
|
{
|
|
/** @var WorkClientServices $make */
|
|
$make = app()->make(WorkClientServices::class);
|
|
$make->authGetExternalcontact($page, $cursor);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 同步客户信息
|
|
* @param $corpId
|
|
* @param $externalUserID
|
|
* @param $userId
|
|
* @return bool
|
|
*/
|
|
public function saveClientInfo($corpId, $externalUserID, $userId)
|
|
{
|
|
/** @var WorkClientServices $make */
|
|
$make = app()->make(WorkClientServices::class);
|
|
$make->saveOrUpdateClient($corpId, $externalUserID, $userId);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 设置客户标签
|
|
* @param $markTag
|
|
* @return bool
|
|
*/
|
|
public function setLabel($markTag)
|
|
{
|
|
/** @var WorkClientServices $make */
|
|
$make = app()->make(WorkClientServices::class);
|
|
$make->setClientMarkTag($markTag);
|
|
return true;
|
|
}
|
|
}
|