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