ImService.class.php
327 Bytes
<?php
/**
* Created by PhpStorm.
* User: zhoutao
* Date: 2018/1/16
* Time: 上午11:23
*/
namespace Common\Service;
use Common\Model\ImModel;
class ImService extends AbstractService
{
// 构造方法
public function __construct()
{
$this->_d = new ImModel();
parent::__construct();
}
}