AnswerDetailExtendService.class.php
347 Bytes
<?php
/**
* 考试-答卷详情分表表
* @date: 2017-11-02
*/
namespace Common\Service;
use Common\Model\AnswerDetailExtendModel;
class AnswerDetailExtendService extends AbstractService
{
// 构造方法
public function __construct()
{
$this->_d = new AnswerDetailExtendModel();
parent::__construct();
}
}