소스 검색

餐厅下单支付

Panda 2 주 전
부모
커밋
dc8994f1f3
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  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 = '';