BaseAdminService.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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 BaseAdminService
  15. * @package app\service\admin
  16. */
  17. class BaseAdminService extends BaseService
  18. {
  19. protected $site_id;
  20. protected $username;
  21. protected $uid;
  22. protected $app_type;
  23. public function __construct()
  24. {
  25. parent::__construct();
  26. $this->app_type = $this->request->appType();
  27. $this->site_id = $this->request->siteId();
  28. $this->username = $this->request->username();
  29. $this->uid = $this->request->uid();
  30. }
  31. }