DeleteController.class.php 472 Bytes
<?php
/**
 * 【考试中心-后台】删除题库题目
 * DeleteController.class.php
 * @author: houyingcai
 * @email:  594609175@qq.com
 * @date :  2017-05-23 16:17:38
 * @version $Id$
 */

namespace Apicp\Controller\Bank;

class DeleteController extends AbstractController
{

    public function Index_post()
    {
        // 删除题库
        if (!$this->bank_service->delete_bank(I('post.'))) {

            return false;
        }

        return true;
    }

}