Authored by zhengwen.ge

update

... ... @@ -50,6 +50,7 @@ public class PayChannelServiceImpl implements IPayChannelService {
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);
logger.info("pay_channel check. result is {}", payChannel);
if(StringUtils.isNotBlank(payChannel)){
channelTypeBO.setChannelTypeName("paychannel");
}
... ... @@ -60,6 +61,7 @@ public class PayChannelServiceImpl implements IPayChannelService {
&& StringUtils.isNotBlank(unionReqVO.getMobile())){
logger.info("pan_channel check. mobile is {}", unionReqVO.getMobile());
MobilePanChannel mobilePanChannel = mobilePanChannelDAO.selectByMobile(unionReqVO.getMobile());
logger.info("pan_channel check. mobilePanChannel is {}", mobilePanChannel);
if (mobilePanChannel != null){
channelTypeBO.setChannelTypeName("panchannel");
}
... ...