queryPartnerIntentInfo

This commit is contained in:
wxp01309236
2023-06-30 20:14:11 +08:00
parent 41ef8bbc69
commit 530e40df26

View File

@@ -272,6 +272,7 @@ public class HyPartnerIntentInfoServiceImpl implements HyPartnerIntentInfoServic
String cacheKey = MessageFormat.format(RedisConstant.PARTNER_INTENTINFO_CACHE_KEY, userInfoVO.getPartnerId(), lineId);
if (StringUtils.isNotBlank(redisUtilPool.getString(cacheKey))) {
PartnerIntentInfoVO intentInfoVO = JSONObject.parseObject(redisUtilPool.getString(cacheKey), PartnerIntentInfoVO.class);
intentInfoVO.setWantShopAreaName(userInfoVO.getWantShopAreaName());
return intentInfoVO;
}
HyPartnerIntentInfoDO intentInfoDO = hyPartnerIntentInfoDAO.getByPartnerIdAndLineId(userInfoVO.getPartnerId(), lineId);