GetSettingController.class.php
572 Bytes
<?php
/**
* Created by IntelliJ IDEA.
* 获取企业积分配置数据
* Date: 17/5/24
* Time: 下午2:19
*/
namespace Apicp\Controller\Level;
use Common\Common\Integral;
class GetSettingController extends AbstractController
{
public function Index_post()
{
$integralUtil = new Integral();
// 获取企业积分等级升级类型
$this->_result = $integralUtil->getUpgradeType();
// 获取企业开启的计算积分等级状态
$this->_result['eilType'] = $integralUtil->getCalcType();
return true;
}
}