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() : [];
     }