ListController.class.php 495 Bytes
<?php
/**
 *【考试中心-后台】激励设置列表
 * ListController.class.php
 * User: 何岳龙
 * Date: 2017年6月1日14:46:46
 */

namespace Apicp\Controller\Encourage;

class ListController extends AbstractController
{

    public function Index_post()
    {

        $params = I('post.');

        // 根据条件获取列表
        $data = $this->medal_service->get_medal_list($params);

        // 组装返回数据
        $this->_result = $data;

        return true;
    }

}