ImgService.class.php
323 Bytes
<?php
/**
* Created by PhpStorm.
* User: zhonglei
* Date: 2017/6/21
* Time: 17:14
*/
namespace Common\Service;
use Common\Model\ImgModel;
class ImgService extends AbstractService
{
// 构造方法
public function __construct()
{
parent::__construct();
$this->_d = new ImgModel();
}
}