|
@@ -405,11 +405,11 @@ public class UserProfileServiceImpl extends ServiceImpl<UserProfileMapper, UserP
|
|
|
objectLambdaUpdateWrapper.set(User::getOneInchPhotos, recent_photos);
|
|
|
}
|
|
|
if(maps.containsKey("idcard_face_photo")){
|
|
|
- idcard_face_photo = JSONObject.parseObject(String.valueOf(maps.get("recent_photos")), UserProfileFit.class).getValue();
|
|
|
+ idcard_face_photo = JSONObject.parseObject(String.valueOf(maps.get("idcard_face_photo")), UserProfileFit.class).getValue();
|
|
|
objectLambdaUpdateWrapper.set(User::getIdCardImg1, idcard_face_photo);
|
|
|
}
|
|
|
if(maps.containsKey("idcard_national_photo")){
|
|
|
- idcard_national_photo = JSONObject.parseObject(String.valueOf(maps.get("recent_photos")), UserProfileFit.class).getValue();
|
|
|
+ idcard_national_photo = JSONObject.parseObject(String.valueOf(maps.get("idcard_national_photo")), UserProfileFit.class).getValue();
|
|
|
objectLambdaUpdateWrapper.set(User::getIdCardImg2, idcard_national_photo);
|
|
|
}
|
|
|
objectLambdaUpdateWrapper.set(User::getUpdateTime,DateUtils.getNowTime());
|