| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- // +----------------------------------------------------------------------
- // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
- // +----------------------------------------------------------------------
- // | 版权所有 2017~2021 LARAVEL研发中心
- // +----------------------------------------------------------------------
- // | 官方网站: http://www.laravel.cn
- // +----------------------------------------------------------------------
- // | Author: laravel开发员 <laravel.qq.com>
- // +----------------------------------------------------------------------
- namespace App\Services\Common;
- use App\Models\ActionLogModel;
- use App\Services\BaseService;
- /**
- * 行为日志-服务类
- * @author laravel开发员
- * @since 2020/11/12
- * Class ActionLogService
- * @package App\Services\Common
- */
- class ActionLogService extends BaseService
- {
- /**
- * 构造函数
- * @author laravel开发员
- * @since 2020/11/12
- * ActionLogService constructor.
- */
- public function __construct()
- {
- $this->model = new ActionLogModel();
- }
- }
|