@ -154,8 +154,8 @@ public class ResiMineGridServiceImpl implements ResiMineGridService {
logger.error(String.format("居民端获取用户最近访问网格失败,接口入参客户Id->%s,appId->%s,调用epmet-user-server服务返回->%s", formDTO.getCustomerId(), formDTO.getAppId(), JSON.toJSONString(userResult)));
return null;
}
result.setGridId(userResult.getData().getGridId());
result.setGridId(StringUtils.isNotBlank(userResult.getData().getGridId()) ? userResult.getData().getGridId() : "");
result.setCustomerId(userResult.getData().getCustomerId());
result.setCustomerId(StringUtils.isNotBlank(userResult.getData().getCustomerId()) ? userResult.getData().getCustomerId() : "");
return result;