AnswerService.class.php
374 Bytes
<?php
/**
* 调研回答记录表
* AnswerService.class.php
* CreateBy:daijun
* Date:2017-03-06
*/
namespace Common\Service;
use Common\Model\AnswerModel;
class AnswerService extends AbstractService
{
// 构造方法
public function __construct()
{
$this->_d = new AnswerModel();
parent::__construct();
}
}