NoticeService.class.php
361 Bytes
<?php
/**
* NoticeService.class.php
* 活动公告信息表
* @author: daijun
* @copyright: vchangyi.com
*/
namespace Common\Service;
use Common\Model\NoticeModel;
class NoticeService extends AbstractService
{
// 构造方法
public function __construct()
{
$this->_d = new NoticeModel();
parent::__construct();
}
}