VipOrder.php 300 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\controller\api\store\order;
  3. use app\controller\api\store\product\Vip;
  4. use crmeb\basic\BaseController;
  5. use think\App;
  6. use think\Exception;
  7. class VipOrder extends BaseController
  8. {
  9. public function __construct(App $app)
  10. {
  11. parent::__construct($app);
  12. }
  13. }