123456789101112131415161718192021222324252627282930 |
- <?php namespace App\Facades\Servers\WechatWork;
- use Illuminate\Support\Facades\Facade;
- /**
- * 客户管理
- *
- * @method static array getFollowUsers() 获取配置了客户联系功能的成员列表
- * @method static array batchGetByUser(array $userIdList,string $cursor,int $limit=100) 批量获取客户详情
- * @method static array getOne(string $extUserid) 获取客户详情
- * @method static bool sendWelcome(string $welcomeCode, array $msg) 发送欢迎语
- * @method static bool remark($extUserid, $userid,$data=[]) 修改客户备注
- *
- * @see \App\Servers\WechatWork\ExternalContact
- *
- */
- class ExternalContact extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\WechatWork\ExternalContact';
- }
- }
- ?>
|