Browse Source

餐厅下单支付

Panda 1 week ago
parent
commit
dc8994f1f3
1 changed files with 10 additions and 0 deletions
  1. 10 0
      application/common/business/PaymentBusiness.php

+ 10 - 0
application/common/business/PaymentBusiness.php

@@ -22,6 +22,16 @@ class PaymentBusiness extends BusinessResult
         'offline_shop_order'     => '线下订单',
     ];
 
+    /**
+     * 主表订单对应各自店铺表
+     */
+    public const ORDER_SHOP = [
+        'hotel_order'            => 'hotel',
+        'hotel_canteen_order'    => 'hotel_canteen',
+        'university_event_apply' => 'university_event',
+        'offline_shop_order'     => 'offline_shop',
+    ];
+
     protected int    $userId    = 0;
     protected string $orderNo   = '';
     protected string $tableName = '';