1234567891011121314151617181920212223 |
- <?php
- namespace app\api\controller\h5;
- use think\Controller;
- class Base extends Controller
- {
- protected $middleware = ['WxAuth'];
- protected $userId;
- protected $orgId;
- protected function initialize()
- {
- parent::initialize();
- $this->userId = input('userId/d',0);
- $this->orgId = input('orgId/d',0);
- }
- }
|