MapService.class.php
326 Bytes
<?php
/**
* Created by PhpStorm.
* User: liyifei2012it
* Date: 18/4/25
* Time: 15:30
*/
namespace Common\Service;
use Common\Model\MapModel;
class MapService extends AbstractService
{
// 构造方法
public function __construct()
{
parent::__construct();
$this->_d = new MapModel();
}
}