ListController.class.php
519 Bytes
<?php
/**
*【考试中心-后台】获取题库列表
* ListController.class.php
* @author: houyingcai
* @email: 594609175@qq.com
* @date : 2017-05-23 16:13:57
* @version $Id$
*/
namespace Apicp\Controller\Bank;
class ListController extends AbstractController
{
public function Index_post()
{
// 初始化
$result = [];
// 获取题库列表
$this->bank_service->get_bank_list($result, I('post.'));
$this->_result = $result;
return true;
}
}