|
@@ -124,11 +124,11 @@ public class UserMiddleServiceImpl extends ServiceImpl<UserMiddleMapper, UserMid
|
|
|
map.put("userPwd", passWord);
|
|
|
}
|
|
|
map.put("departMent", "05");
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- return true;
|
|
|
+ HttpResponse httpResponse = HttpClientUtil.doPost(marketingUrl, headerMap, map);
|
|
|
+ String body = httpResponse.body();
|
|
|
+ JSONObject jsonObject = JSON.parseObject(body);
|
|
|
+ return 1 == (int) jsonObject.get("code");
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|