Browse Source

获取门店信息(根绝tableName)

Panda 1 week ago
parent
commit
2a93a4cf0b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/common/business/PaymentBusiness.php

+ 1 - 1
application/common/business/PaymentBusiness.php

@@ -47,7 +47,7 @@ class PaymentBusiness extends BusinessResult
     public function getShopInfo(string $tableName,int $shopId)
     {
         $tableName = self::ORDER_SHOP[$tableName];
-        return Db::name($tableName)->where(['shop_id' => $shopId])->find();
+        return Db::name($tableName)->where(['id' => $shopId])->find();
     }
 
     /**