ConfigGroupService.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. * 构造函数
  24. * @author laravel开发员
  25. * @since 2020/11/11
  26. * ConfigGroupService constructor.
  27. */
  28. public function __construct()
  29. {
  30. $this->model = new ConfigGroupModel();
  31. }
  32. }