DownloadService.class.php
368 Bytes
<?php
/**
* @author: heyuelong
* @email: 271608475@qq.com
* @date : 2018年4月18日11:12:18
* @version $Id$
*/
namespace Common\Service;
use Common\Model\DownloadModel;
class DownloadService extends AbstractService
{
// 构造方法
public function __construct()
{
parent::__construct();
$this->_d = new DownloadModel();
}
}