|
@ -240,9 +240,7 @@ public class UserServiceImpl extends BaseServiceImpl<UserDao, UserEntity> implem |
|
|
userAddFormDTO.setRemark(entity.getRemark()); |
|
|
userAddFormDTO.setRemark(entity.getRemark()); |
|
|
userAddFormDTO.setIdentityCard(entity.getIdentityNo()); |
|
|
userAddFormDTO.setIdentityCard(entity.getIdentityNo()); |
|
|
|
|
|
|
|
|
log.info("++++++++++++++++++++++++++++++++++++++++++++userAddFormDTO:" + userAddFormDTO); |
|
|
|
|
|
Result<GlobalResultDTO> result = communityManageFeignClient.addUser(userAddFormDTO); |
|
|
Result<GlobalResultDTO> result = communityManageFeignClient.addUser(userAddFormDTO); |
|
|
log.info("++++++++++++++++++++++++++++++++++++++++++++userAdd result:" + JSON.toJSONString(result)); |
|
|
|
|
|
communityManageHandle(result, dto, entity); |
|
|
communityManageHandle(result, dto, entity); |
|
|
} |
|
|
} |
|
|
} else if (type == NumConstant.ONE) { |
|
|
} else if (type == NumConstant.ONE) { |
|
@ -259,9 +257,7 @@ public class UserServiceImpl extends BaseServiceImpl<UserDao, UserEntity> implem |
|
|
userUpdFormDTO.setGender(entity.getSex() == null ? null : Integer.parseInt(entity.getSex())); |
|
|
userUpdFormDTO.setGender(entity.getSex() == null ? null : Integer.parseInt(entity.getSex())); |
|
|
userUpdFormDTO.setUserGridId(userEntity.getManageId()); |
|
|
userUpdFormDTO.setUserGridId(userEntity.getManageId()); |
|
|
|
|
|
|
|
|
log.info("++++++++++++++++++++++++++++++++++++++++++++userUpdFormDTO:" + userUpdFormDTO); |
|
|
|
|
|
Result<GlobalResultDTO> result = communityManageFeignClient.updUser(userUpdFormDTO); |
|
|
Result<GlobalResultDTO> result = communityManageFeignClient.updUser(userUpdFormDTO); |
|
|
log.info("++++++++++++++++++++++++++++++++++++++++++++userUpd result:" + JSON.toJSONString(result)); |
|
|
|
|
|
communityManageHandle(result, dto, entity); |
|
|
communityManageHandle(result, dto, entity); |
|
|
} |
|
|
} |
|
|
} else if (type == NumConstant.TWO) { |
|
|
} else if (type == NumConstant.TWO) { |
|
@ -269,9 +265,7 @@ public class UserServiceImpl extends BaseServiceImpl<UserDao, UserEntity> implem |
|
|
if (userEntity != null && userEntity.getManageId() != null) { |
|
|
if (userEntity != null && userEntity.getManageId() != null) { |
|
|
UserDelFormDTO userDelFormDTO = new UserDelFormDTO(); |
|
|
UserDelFormDTO userDelFormDTO = new UserDelFormDTO(); |
|
|
userDelFormDTO.setUserGridId(userEntity.getManageId()); |
|
|
userDelFormDTO.setUserGridId(userEntity.getManageId()); |
|
|
log.info("++++++++++++++++++++++++++++++++++++++++++++userDelFormDTO:" + userDelFormDTO); |
|
|
|
|
|
Result<GlobalResultDTO> result = communityManageFeignClient.delUser(userDelFormDTO); |
|
|
Result<GlobalResultDTO> result = communityManageFeignClient.delUser(userDelFormDTO); |
|
|
log.info("++++++++++++++++++++++++++++++++++++++++++++userDel result:" + JSON.toJSONString(result)); |
|
|
|
|
|
// communityManageHandle(result, dto, entity);
|
|
|
// communityManageHandle(result, dto, entity);
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|