// +---------------------------------------------------------------------- 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(); } }