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