SyscacheService.class.php
354 Bytes
<?php
/**
* 线下培训缓存表Service
* SyscacheService.class.php
* @copyright: vchangyi.com
*/
namespace Common\Service;
use Common\Model\SyscacheModel;
class SyscacheService extends AbstractService
{
// 构造方法
public function __construct()
{
$this->_d = new SyscacheModel();
parent::__construct();
}
}