|
@@ -2394,8 +2394,11 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
//调注册用户接口
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
params.put("ryId", sceneOrigBd.getRyId());
|
|
|
- params.put("ryNo", sceneOrigBd.getRyNo());
|
|
|
- params.put("password", AesUtil.encryptCBC(sceneOrigBd.getPassword(), userPasswordKey, userPasswordIv, AesUtil.ALMODE_CBC_NOPADDING));
|
|
|
+ params.put("ryNo", sceneOrigBd.getRyId());
|
|
|
+ params.put("password", sceneOrigBd.getPassword());
|
|
|
+ params.put("phone", sceneOrigBd.getRyPhone());
|
|
|
+ params.put("idCard", sceneOrigBd.getRyCid());
|
|
|
+ params.put("jyNo", sceneOrigBd.getRyNo());
|
|
|
String url = fdServiceUrl.concat(URL_ADD_UCENTER_USER);
|
|
|
ResultData post1 = myClient.post(url, params);
|
|
|
log.info("---------registerUser result:{}-----------", post1);
|