SyscacheService.class.php
342 Bytes
<?php
/**
* Created by PhpStorm.
* User: tangxingguo
* Date: 2017/2/8
* Time: 15:44
*/
namespace Common\Service;
use Common\Model\SyscacheModel;
class SyscacheService extends AbstractService
{
// 构造方法
public function __construct()
{
parent::__construct();
$this->_d = new SyscacheModel();
}
}