|
|
|
@ -69,7 +69,7 @@ public class CustomerServiceServiceImpl implements CustomerServiceService {
|
|
|
|
|
JSONObject userInfo = clientAccountMapper.findById(account.getString("account_id"));
|
|
|
|
|
JSONObject checkRecord = new JSONObject();
|
|
|
|
|
checkRecord.put("nick", userInfo.getString("username") + "_" + client.getString("client_moniker"));
|
|
|
|
|
checkRecord.put("user_id", userInfo.getString("username"));
|
|
|
|
|
checkRecord.put("user_id", userInfo.getString("username") + "_" + client.getString("client_moniker"));
|
|
|
|
|
checkRecord.put("password", DigestUtils.md5Hex("uid"));
|
|
|
|
|
checkRecord.put("icon_url",client.getString("logo_thumbnail"));
|
|
|
|
|
openimApi.addUser(checkRecord);
|
|
|
|
|