Browse Source

修改编辑站点绑定小二账号时userId信息

zhangqiang 9 months ago
parent
commit
f8538cd39e

+ 1 - 1
jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/okki/account/service/impl/OkkiAccountServiceImpl.java

@@ -85,7 +85,7 @@ public class OkkiAccountServiceImpl extends ServiceImpl<OkkiAccountMapper, OkkiA
         Map<String, Object> postData = new HashMap<>();
         try {
             String queryStr = HttpClientUtils.buildQueryString(query);
-            postData.put("user_id", okkiAccount.getUserId());
+            postData.put("user_id", this.getById(okkiAccount.getId()).getUserId());
             // 字符串转数组
             String siteIds = okkiAccount.getSiteIds();
             String[] split = siteIds.split(",");