QuestionListController.class.php
631 Bytes
<?php
/**
* 获取批阅的答卷试题列表
* Created by PhpStorm.
* User: yingcai
* Date: 2018/4/4
* Time: 下午3:51
*/
namespace Apicp\Controller\Check;
use Common\Service\AnswerDetailService;
class QuestionListController extends AbstractController
{
public function Index_post()
{
// 接收post参数
$params = I('post.');
// 查询当前用户阅卷答题列表
$answer_detail_serv = new AnswerDetailService();
$list = $answer_detail_serv->question_list_admin($params);
// 返回结果
$this->_result = $list;
return true;
}
}