AbstractService.class.php
408 Bytes
<?php
/**
* AbstractService.class.php
* Service 层基类
* @author: tangxingguo
* @version: $Id$
* @copyright: vchangyi.com
*/
namespace Common\Service;
use VcySDK\Service;
use Common\Model\RightModel;
abstract class AbstractService extends \Com\Service
{
// 构造方法
public function __construct()
{
$this->_right = new RightModel();
parent::__construct();
}
}