Authored by zhengwen.ge

update

... ... @@ -47,7 +47,7 @@ public class PayChannelServiceImpl implements IPayChannelService {
// (1)判断是否是 付费渠道
if (StringUtils.isNotBlank(unionReqVO.getUdid())){
logger.info("pay_channel check");
logger.info("pay_channel check. udid is {}", unionReqVO.getUdid());
String redisKey = UNION_PAY_CHANNEL_KEY_PRE + unionReqVO.getUdid();
String payChannel= redisValueCache.get(redisKey, String.class);
if(StringUtils.isNotBlank(payChannel)){
... ... @@ -58,7 +58,7 @@ public class PayChannelServiceImpl implements IPayChannelService {
// (2)判断是否是 泛渠道
if (StringUtils.isEmpty(channelTypeBO.getChannelTypeName())
&& StringUtils.isNotBlank(unionReqVO.getMobile())){
logger.info("pan_channel check");
logger.info("pan_channel check. mobile is {}", unionReqVO.getMobile());
MobilePanChannel mobilePanChannel = mobilePanChannelDAO.selectByMobile(unionReqVO.getMobile());
if (mobilePanChannel != null){
channelTypeBO.setChannelTypeName("panchannel");
... ...