AddController.class.php
442 Bytes
<?php
/**
* 【考试中心-后台】 添加题库题目
* @author: houyingcai
* @email: 594609175@qq.com
* @date : 2017-05-23 16:24:51
*/
namespace Apicp\Controller\Topic;
class AddController extends AbstractController
{
public function Index_post()
{
// 添加题库题目
if (!$this->topic_service->add_topic($this->_result, I('post.'))) {
return false;
}
return true;
}
}