ConfigGroupService.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2017~2021 LARAVEL研发中心
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://www.laravel.cn
  8. // +----------------------------------------------------------------------
  9. // | Author: laravel开发员 <laravel.qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace App\Services;
  12. use App\Models\ConfigGroupModel;
  13. /**
  14. * 配置分组-服务类
  15. * @author laravel开发员
  16. * @since 2020/11/11
  17. * Class ConfigGroupService
  18. * @package App\Services
  19. */
  20. class ConfigGroupService extends BaseService
  21. {
  22. // 静态对象
  23. protected static $instance = null;
  24. /**
  25. * 构造函数
  26. * @author laravel开发员
  27. * @since 2020/11/11
  28. * ConfigGroupService constructor.
  29. */
  30. public function __construct()
  31. {
  32. $this->model = new ConfigGroupModel();
  33. }
  34. }