Commit 93e0d5c8 authored by 宋新宇's avatar 宋新宇

dy短剧关键行为优化

parent 41bd6ec6
...@@ -135,7 +135,7 @@ public class VideoAppBehaviorFlow extends NodeSwitchFlow<NovelAction> { ...@@ -135,7 +135,7 @@ public class VideoAppBehaviorFlow extends NodeSwitchFlow<NovelAction> {
} }
} else if (null != behavoirVal && behavoirVal instanceof Double) { } else if (null != behavoirVal && behavoirVal instanceof Double) {
if (type.getValue().startsWith(BehavoirType.ARPUMODELCOUNT.getValue()) && null != arpuCount) { if (type.getValue().startsWith(BehavoirType.ARPUMODELCOUNT.getValue()) && null != arpuCount) {
if (arpuCount < behavoirVal.intValue()) { if (arpuCount < behavoirVal.doubleValue()) {
VIDEOAPP_SYS_LOG.info("arpu ecpmAvgModelCount not up to the standard,arpuCount={},arpuModelCount={},ecpmAvgCount={},djChanel={},deviceId={},userId={},conditionNum={}",arpuCount,behavoirVal,deliveryDeviceInfo.getEcpmAvgCount(),channelId,deviceId,userId,conditionNum); VIDEOAPP_SYS_LOG.info("arpu ecpmAvgModelCount not up to the standard,arpuCount={},arpuModelCount={},ecpmAvgCount={},djChanel={},deviceId={},userId={},conditionNum={}",arpuCount,behavoirVal,deliveryDeviceInfo.getEcpmAvgCount(),channelId,deviceId,userId,conditionNum);
action.stop(true); action.stop(true);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment