BaseApiService.php 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Niucloud-admin 企业快速开发的saas管理平台
  4. // +----------------------------------------------------------------------
  5. // | 官方网址:https://www.niucloud.com
  6. // +----------------------------------------------------------------------
  7. // | niucloud团队 版权所有 开源版本可自由商用
  8. // +----------------------------------------------------------------------
  9. // | Author: Niucloud Team
  10. // +----------------------------------------------------------------------
  11. namespace core\base;
  12. /**
  13. * 手机前端基础服务层
  14. * Class BaseApiService
  15. * @package app\service\api
  16. */
  17. class BaseApiService extends BaseService
  18. {
  19. protected $site_id;
  20. protected $member_id;
  21. protected $channel;
  22. public function __construct()
  23. {
  24. parent::__construct();
  25. $this->site_id = $this->request->siteId();
  26. $this->member_id = $this->request->memberId();
  27. $this->channel = $this->request->getChannel();
  28. }
  29. }