PathService.class.php
325 Bytes
<?php
/**
* Created by PhpStorm.
* User: zhonglei
* Date: 18/4/24
* Time: 11:57
*/
namespace Common\Service;
use Common\Model\PathModel;
class PathService extends AbstractService
{
// 构造方法
public function __construct()
{
parent::__construct();
$this->_d = new PathModel();
}
}