Przeglądaj źródła

* 商品详情接口bug修复

libo 4 lat temu
rodzic
commit
218e2d6e77

+ 6 - 1
src/main/java/com/tdba/cxb/ares/api/service/UserService.java

@@ -106,9 +106,14 @@ public class UserService {
106 106
                             .withUid(innerRow.getPid())
107 107
                             .withDate(localDate)
108 108
                             .build());
109
+
110
+                    relateList.add(UserRelate.UserRelateBuilder.anUserRelate()
111
+                            .withUid(row.getUid())
112
+                            .withPid(innerRow.getPid())
113
+                            .withDate(localDate)
114
+                            .build());
109 115
                 });
110 116
             }
111
-
112 117
         });
113 118
         if(!resultList.isEmpty()){
114 119
             userCountMapper.insertSelectiveForeach(resultList);