TestRecordController.class.php 713 Bytes
<?php
/**
 * 【考试中心-手机端】3-模拟考试(已参与)详情记录接口
 * TestRecordController.class.php
 * @author: 蔡建华
 * @date: 2017-05-8
 */

namespace Api\Controller\Paper;

use Common\Service\AnswerService;

class TestRecordController extends AbstractController
{

    // 分页
    const QUERY_TYPE_PAGE = 1;

    public function Index_post()
    {
        // 接收post参数
        $params = I('post.');

        // 实例化答卷service
        $answer_s = new AnswerService();
        // 获取当前用户的试卷记录
        $data = $answer_s->test_record_list($params, $this->uid, self::QUERY_TYPE_PAGE);

        // 返回结果
        $this->_result = $data;
    }
}