CommonAgencyRecordService.class.php
367 Bytes
<?php
/**
* CommonCollectionService.class.php
* 收藏系统 Service
* @author Xtong
* @version $Id$
*/
namespace Common\Service;
use Common\Model\CommonAgencyRecordModel;
class CommonAgencyRecordService extends AbstractService
{
public function __construct()
{
parent::__construct();
$this->_d = new CommonAgencyRecordModel();
}
}