ContentService.class.php
339 Bytes
<?php
/**
* Created by PhpStorm.
* User: liyifei2012it
* Date: 18/3/26
* Time: 16:59
*/
namespace Common\Service;
use Common\Model\ContentModel;
class ContentService extends AbstractService
{
// 构造方法
public function __construct()
{
parent::__construct();
$this->_d = new ContentModel();
}
}