DetailController.class.php
630 Bytes
<?php
/**
* 【考试中心-后台】获取激励规则详情
* DetailController.class.php
* User: 何岳龙
* Date: 2017年6月1日14:46:41
*/
namespace Apicp\Controller\Encourage;
class DetailController extends AbstractController
{
public function Index_post()
{
$params = I('post.');
// 详情数据验证
if (!$this->medal_service->medal_info_validation($params)) {
return false;
}
// 获取详情
$info = $this->medal_service->get_medal_info($params);
// 组装返回数据
$this->_result = $info;
return true;
}
}