| 12345678910111213141516171819202122232425 |
- <?php
- namespace app\controller\api\store\order;
- use app\controller\api\store\product\Vip;
- use crmeb\basic\BaseController;
- use think\App;
- use think\Exception;
- class VipOrder extends BaseController
- {
- public function __construct(App $app)
- {
- parent::__construct($app);
- }
- }
|