OrderUsageController.class.php 419 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: zhoutao
 * Date: 2018/2/5
 * Time: 下午5:23
 */

namespace Apicp\Controller\Enterprise;

class OrderUsageController extends AbstractController
{
    /**
     * 付费使用情况
     */
    public function index()
    {
        // 啥也没做, 因为基类有做, 为什么要有这个接口呢, 因为前端需要一个统一的报错接口

        return true;
    }
}