mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-01 16:58:16 +00:00
14 lines
260 B
PHP
14 lines
260 B
PHP
<?php
|
|
|
|
namespace app\services\system;
|
|
|
|
use app\dao\system\SystemEventDataDao;
|
|
use app\services\BaseServices;
|
|
|
|
class SystemEventDataServices extends BaseServices
|
|
{
|
|
public function __construct(SystemEventDataDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
} |