ListController.class.php 533 Bytes
<?php
/**
 * 【后台】培训列表接口
 * ListController.class.php
 * User: yingcai
 * Date: 2017/8/29
 * Time: 下午5:04
 */

namespace Apicp\Controller\Education;

use Common\Service\EducationService;

class ListController extends \Apicp\Controller\AbstractController
{

    public function Index_post()
    {
        $params = I('post.');

        $education_service = new EducationService();
        // 培训列表
        $this->_result = $education_service->education_search_list($params);

        return true;
    }
}