RecordService.class.php
486 Bytes
<?php
/**
* RecordService.class.php
* 调研回答信息表
* @author: dj
* @copyright: vchangyi.com
*/
namespace Common\Service;
use Common\Model\RecordModel;
class RecordService extends AbstractService
{
// 构造方法
public function __construct()
{
$this->_d = new RecordModel();
parent::__construct();
}
public function list_by_where($qid = 0)
{
return $this->_d->list_by_where($qid);
}
}