<?php /** * CommonRecommenderRightService.class.php * 推荐系统权限范围表 Service * @author Deepseath * @version $Id$ */ namespace Common\Service; use Common\Model\CommonRecommenderRightModel; class CommonRecommenderRightService extends AbstractService { /** * 推荐系统 Service 构造方法 */ public function __construct() { parent::__construct(); $this->_d = new CommonRecommenderRightModel(); } }