ExternalContact.php 1000 B

123456789101112131415161718192021222324252627282930
  1. <?php namespace App\Facades\Servers\WechatWork;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 客户管理
  5. *
  6. * @method static array getFollowUsers() 获取配置了客户联系功能的成员列表
  7. * @method static array batchGetByUser(array $userIdList,string $cursor,int $limit=100) 批量获取客户详情
  8. * @method static array getOne(string $extUserid) 获取客户详情
  9. * @method static bool sendWelcome(string $welcomeCode, array $msg) 发送欢迎语
  10. * @method static bool remark($extUserid, $userid,$data=[]) 修改客户备注
  11. *
  12. * @see \App\Servers\WechatWork\ExternalContact
  13. *
  14. */
  15. class ExternalContact extends Facade
  16. {
  17. /**
  18. * Get the registered name of the component.
  19. *
  20. * @return string
  21. */
  22. protected static function getFacadeAccessor()
  23. {
  24. return '\App\Servers\WechatWork\ExternalContact';
  25. }
  26. }
  27. ?>