ConfigsService.php
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
+-----------------------------------------------------------------------------------------------------------------------
* 逻辑层:系统-参数配置 服务类,处理业务逻辑
+-----------------------------------------------------------------------------------------------------------------------
*
* PHP version 7
*
* @category App\Services\User
* @package App\Services\User
* @author Richer <yangzi1028@163.com>
* @date 2020年11月16日 17:23:22
* @copyright 2021-2022 Richer (http://www.Richer.com/)
* @license http://www.Richer.com/ License
* @link http://www.Richer.com/
*/
namespace App\Services\System;
use App\Http\Requests\UserRequest;
use App\Models\Admin\User as Admin;
use App\Models\Order\Order;
use App\Models\SchoolClass;
use App\Models\System\SystemConfig;
use App\Models\User\User;
use App\Services\BaseService;
use Illuminate\Http\Request;
use JWTAuth;
/**
* Class ConfigsService.
*
* @category App\Services\User
* @package App\Services\User
* @author Richer <yangzi1028@163.com>
* @date 2020年11月16日 17:23:22
* @copyright 2021-2022 Richer (http://www.Richer.com/)
* @license http://www.Richer.com/ License
* @link http://www.Richer.com/
*/
class ConfigsService extends BaseService
{
/**
* WatService constructor.
*
* @param SystemConfig $model
*/
public function __construct(SystemConfig $model)
{
// 执行父类构造方法
parent::__construct($model);
}
}