StatisticsService.class.php
361 Bytes
<?php
/**
* 题目分析统计表
* @author : wanghuan
* @date : 2017-07-18
* @version: $Id$
*/
namespace Common\Service;
use Common\Model\StatisticsModel;
class StatisticsService extends AbstractService
{
// 构造方法
public function __construct()
{
$this->_d = new StatisticsModel();
parent::__construct();
}
}