zhuchengjie 3 年之前
父节点
当前提交
0c9bbaadc3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Services/Order/OrderService.php

+ 1 - 1
src/Services/Order/OrderService.php

@@ -40,7 +40,7 @@ class OrderService
 
     public function getUserOpenidsData($uid,$app_id)
     {
-        $res = UserOpenids::where('uid', $uid)->where('app_id',$app_id)->first();
+        $res = UserOpenids::where('uid', $uid)->where('appid',$app_id)->first();
         return $res ? $res->toArray() : [];
     }