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