Authored by zhengwen.ge

update

@@ -50,6 +50,7 @@ public class PayChannelServiceImpl implements IPayChannelService { @@ -50,6 +50,7 @@ public class PayChannelServiceImpl implements IPayChannelService {
50 logger.info("pay_channel check. udid is {}", unionReqVO.getUdid()); 50 logger.info("pay_channel check. udid is {}", unionReqVO.getUdid());
51 String redisKey = UNION_PAY_CHANNEL_KEY_PRE + unionReqVO.getUdid(); 51 String redisKey = UNION_PAY_CHANNEL_KEY_PRE + unionReqVO.getUdid();
52 String payChannel= redisValueCache.get(redisKey, String.class); 52 String payChannel= redisValueCache.get(redisKey, String.class);
  53 + logger.info("pay_channel check. result is {}", payChannel);
53 if(StringUtils.isNotBlank(payChannel)){ 54 if(StringUtils.isNotBlank(payChannel)){
54 channelTypeBO.setChannelTypeName("paychannel"); 55 channelTypeBO.setChannelTypeName("paychannel");
55 } 56 }
@@ -60,6 +61,7 @@ public class PayChannelServiceImpl implements IPayChannelService { @@ -60,6 +61,7 @@ public class PayChannelServiceImpl implements IPayChannelService {
60 && StringUtils.isNotBlank(unionReqVO.getMobile())){ 61 && StringUtils.isNotBlank(unionReqVO.getMobile())){
61 logger.info("pan_channel check. mobile is {}", unionReqVO.getMobile()); 62 logger.info("pan_channel check. mobile is {}", unionReqVO.getMobile());
62 MobilePanChannel mobilePanChannel = mobilePanChannelDAO.selectByMobile(unionReqVO.getMobile()); 63 MobilePanChannel mobilePanChannel = mobilePanChannelDAO.selectByMobile(unionReqVO.getMobile());
  64 + logger.info("pan_channel check. mobilePanChannel is {}", mobilePanChannel);
63 if (mobilePanChannel != null){ 65 if (mobilePanChannel != null){
64 channelTypeBO.setChannelTypeName("panchannel"); 66 channelTypeBO.setChannelTypeName("panchannel");
65 } 67 }