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