| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\service\controller;
- use think\cache\driver\Redis;
- use think\Request;
- /**
- * 客服系统 Event 接口
- */
- class Ext extends Common
- {
- public function __construct(Request $request = null)
- {
- parent::__construct($request);
- // 验证token.
- $this->verifyToken();
- }
- public function allConversation()
- {
- }
- }
|