hyperf-view/app/System/Service/SettingCrontabLogService.php

21 lines
368 B
PHP

<?php
namespace App\System\Service;
use App\System\Mapper\SettingCrontabLogMapper;
use Builder\Abstracts\AbstractService;
class SettingCrontabLogService extends AbstractService
{
/**
* @var SettingCrontabLogMapper
*/
public $mapper;
public function __construct(SettingCrontabLogMapper $mapper)
{
$this->mapper = $mapper;
}
}