zhuchengjie hace 3 años
padre
commit
0c9bbaadc3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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() : [];
     }