|
@@ -1284,415 +1284,354 @@ public class AdStatOfHourDWD {
|
|
return adStatOfHour;
|
|
return adStatOfHour;
|
|
}
|
|
}
|
|
|
|
|
|
- public static AdStatOfHourDWD reduce(AdStatOfHourDWD value1, AdDataOfHourODS value2, long createTime) {
|
|
|
|
|
|
+ public static AdStatOfHourDWD reduce(AdStatOfDayDWD yesterdayDWD, AdStatOfHourDWD value1, AdDataOfHourODS value2, long createTime) {
|
|
AdStatOfHourDWD result = new AdStatOfHourDWD();
|
|
AdStatOfHourDWD result = new AdStatOfHourDWD();
|
|
BeanUtils.copyProperties(value2, result);
|
|
BeanUtils.copyProperties(value2, result);
|
|
result.setCreateTime(new Date(createTime));
|
|
result.setCreateTime(new Date(createTime));
|
|
|
|
+
|
|
|
|
+ result.setCostDeviationRateHour(value2.getCostDeviationRate());
|
|
|
|
+ result.setCostHour(value2.getCost());
|
|
|
|
+ result.setCompensationAmountHour(value2.getCompensationAmount());
|
|
|
|
+ result.setViewCountHour(value2.getViewCount());
|
|
|
|
+ result.setThousandDisplayPriceHour(value2.getThousandDisplayPrice());
|
|
|
|
+ result.setAvgViewPerUserHour(value2.getAvgViewPerUser());
|
|
|
|
+ result.setValidClickCountHour(value2.getValidClickCount());
|
|
|
|
+ result.setCtrHour(value2.getCtr());
|
|
|
|
+ result.setCpcHour(value2.getCpc());
|
|
|
|
+ result.setValuableClickCountHour(value2.getValuableClickCount());
|
|
|
|
+ result.setValuableClickRateHour(value2.getValuableClickRate());
|
|
|
|
+ result.setValuableClickCostHour(value2.getValuableClickCost());
|
|
|
|
+ result.setConversionsCountHour(value2.getConversionsCount());
|
|
|
|
+ result.setConversionsCostHour(value2.getConversionsCost());
|
|
|
|
+ result.setConversionsRateHour(value2.getConversionsRate());
|
|
|
|
+ result.setDeepConversionsCountHour(value2.getDeepConversionsCount());
|
|
|
|
+ result.setDeepConversionsCostHour(value2.getDeepConversionsCost());
|
|
|
|
+ result.setDeepConversionsRateHour(value2.getDeepConversionsRate());
|
|
|
|
+ result.setOrderCountHour(value2.getOrderCount());
|
|
|
|
+ result.setFirstDayOrderCountHour(value2.getFirstDayOrderCount());
|
|
|
|
+ result.setWebOrderCostHour(value2.getWebOrderCost());
|
|
|
|
+ result.setOrderRateHour(value2.getOrderRate());
|
|
|
|
+ result.setOrderAmountHour(value2.getOrderAmount());
|
|
|
|
+ result.setFirstDayOrderAmountHour(value2.getFirstDayOrderAmount());
|
|
|
|
+ result.setOrderUnitPriceHour(value2.getOrderUnitPrice());
|
|
|
|
+ result.setOrderRoiHour(value2.getOrderRoi());
|
|
|
|
+ result.setSignInCountHour(value2.getSignInCount());
|
|
|
|
+ result.setScanFollowCountHour(value2.getScanFollowCount());
|
|
|
|
+ result.setWechatAppRegisterUvHour(value2.getWechatAppRegisterUv());
|
|
|
|
+ result.setWechatMinigameRegisterCostHour(value2.getWechatMinigameRegisterCost());
|
|
|
|
+ result.setWechatMinigameRegisterRateHour(value2.getWechatMinigameRegisterRate());
|
|
|
|
+ result.setWechatMinigameArpuHour(value2.getWechatMinigameArpu());
|
|
|
|
+ result.setWechatMinigameRetentionCountHour(value2.getWechatMinigameRetentionCount());
|
|
|
|
+ result.setWechatMinigameCheckoutCountHour(value2.getWechatMinigameCheckoutCount());
|
|
|
|
+ result.setWechatMinigameCheckoutAmountHour(value2.getWechatMinigameCheckoutAmount());
|
|
|
|
+ result.setOfficialAccountFollowCountHour(value2.getOfficialAccountFollowCount());
|
|
|
|
+ result.setOfficialAccountFollowRateHour(value2.getOfficialAccountFollowRate());
|
|
|
|
+ result.setOfficialAccountRegisterUserCountHour(value2.getOfficialAccountRegisterUserCount());
|
|
|
|
+ result.setOfficialAccountRegisterRateHour(value2.getOfficialAccountRegisterRate());
|
|
|
|
+ result.setOfficialAccountRegisterCostHour(value2.getOfficialAccountRegisterCost());
|
|
|
|
+ result.setOfficialAccountRegisterAmountHour(value2.getOfficialAccountRegisterAmount());
|
|
|
|
+ result.setOfficialAccountRegisterRoiHour(value2.getOfficialAccountRegisterRoi());
|
|
|
|
+ result.setOfficialAccountApplyCountHour(value2.getOfficialAccountApplyCount());
|
|
|
|
+ result.setOfficialAccountApplyUserCountHour(value2.getOfficialAccountApplyUserCount());
|
|
|
|
+ result.setOfficialAccountApplyRateHour(value2.getOfficialAccountApplyRate());
|
|
|
|
+ result.setOfficialAccountApplyCostHour(value2.getOfficialAccountApplyCost());
|
|
|
|
+ result.setOfficialAccountApplyAmountHour(value2.getOfficialAccountApplyAmount());
|
|
|
|
+ result.setOfficialAccountApplyRoiHour(value2.getOfficialAccountApplyRoi());
|
|
|
|
+ result.setOfficialAccountOrderCountHour(value2.getOfficialAccountOrderCount());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderCountHour(value2.getOfficialAccountFirstDayOrderCount());
|
|
|
|
+ result.setOfficialAccountOrderUserCountHour(value2.getOfficialAccountOrderUserCount());
|
|
|
|
+ result.setOfficialAccountOrderRateHour(value2.getOfficialAccountOrderRate());
|
|
|
|
+ result.setOfficialAccountOrderCostHour(value2.getOfficialAccountOrderCost());
|
|
|
|
+ result.setOfficialAccountOrderAmountHour(value2.getOfficialAccountOrderAmount());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderAmountHour(value2.getOfficialAccountFirstDayOrderAmount());
|
|
|
|
+ result.setOfficialAccountOrderRoiHour(value2.getOfficialAccountOrderRoi());
|
|
|
|
+ result.setOfficialAccountConsultCountHour(value2.getOfficialAccountConsultCount());
|
|
|
|
+ result.setOfficialAccountReaderCountHour(value2.getOfficialAccountReaderCount());
|
|
|
|
+ result.setOfficialAccountCreditApplyUserCountHour(value2.getOfficialAccountCreditApplyUserCount());
|
|
|
|
+ result.setOfficialAccountCreditUserCountHour(value2.getOfficialAccountCreditUserCount());
|
|
|
|
+ result.setForwardCountHour(value2.getForwardCount());
|
|
|
|
+ result.setForwardUserCountHour(value2.getForwardUserCount());
|
|
|
|
+ result.setNoInterestCountHour(value2.getNoInterestCount());
|
|
if (value1 == null) {
|
|
if (value1 == null) {
|
|
- result.setCostDeviationRateTotal(value2.getCostDeviationRate());
|
|
|
|
result.setCostDeviationRateDay(value2.getCostDeviationRate());
|
|
result.setCostDeviationRateDay(value2.getCostDeviationRate());
|
|
- result.setCostDeviationRateHour(value2.getCostDeviationRate());
|
|
|
|
- result.setCostTotal(value2.getCost());
|
|
|
|
result.setCostDay(value2.getCost());
|
|
result.setCostDay(value2.getCost());
|
|
- result.setCostHour(value2.getCost());
|
|
|
|
- result.setCompensationAmountTotal(value2.getCompensationAmount());
|
|
|
|
result.setCompensationAmountDay(value2.getCompensationAmount());
|
|
result.setCompensationAmountDay(value2.getCompensationAmount());
|
|
- result.setCompensationAmountHour(value2.getCompensationAmount());
|
|
|
|
- result.setViewCountTotal(value2.getViewCount());
|
|
|
|
result.setViewCountDay(value2.getViewCount());
|
|
result.setViewCountDay(value2.getViewCount());
|
|
- result.setViewCountHour(value2.getViewCount());
|
|
|
|
- result.setThousandDisplayPriceAll(value2.getThousandDisplayPrice());
|
|
|
|
result.setThousandDisplayPriceDay(value2.getThousandDisplayPrice());
|
|
result.setThousandDisplayPriceDay(value2.getThousandDisplayPrice());
|
|
- result.setThousandDisplayPriceHour(value2.getThousandDisplayPrice());
|
|
|
|
- result.setAvgViewPerUserHour(value2.getAvgViewPerUser());
|
|
|
|
- result.setValidClickCountTotal(value2.getValidClickCount());
|
|
|
|
result.setValidClickCountDay(value2.getValidClickCount());
|
|
result.setValidClickCountDay(value2.getValidClickCount());
|
|
- result.setValidClickCountHour(value2.getValidClickCount());
|
|
|
|
- result.setCtrAll(value2.getCtr());
|
|
|
|
result.setCtrDay(value2.getCtr());
|
|
result.setCtrDay(value2.getCtr());
|
|
- result.setCtrHour(value2.getCtr());
|
|
|
|
- result.setCpcAll(value2.getCpc());
|
|
|
|
result.setCpcDay(value2.getCpc());
|
|
result.setCpcDay(value2.getCpc());
|
|
- result.setCpcHour(value2.getCpc());
|
|
|
|
- result.setValuableClickCountTotal(value2.getValuableClickCount());
|
|
|
|
result.setValuableClickCountDay(value2.getValuableClickCount());
|
|
result.setValuableClickCountDay(value2.getValuableClickCount());
|
|
- result.setValuableClickCountHour(value2.getValuableClickCount());
|
|
|
|
- result.setValuableClickRateAll(value2.getValuableClickRate());
|
|
|
|
result.setValuableClickRateDay(value2.getValuableClickRate());
|
|
result.setValuableClickRateDay(value2.getValuableClickRate());
|
|
- result.setValuableClickRateHour(value2.getValuableClickRate());
|
|
|
|
- result.setValuableClickCostAll(value2.getValuableClickCost());
|
|
|
|
result.setValuableClickCostDay(value2.getValuableClickCost());
|
|
result.setValuableClickCostDay(value2.getValuableClickCost());
|
|
- result.setValuableClickCostHour(value2.getValuableClickCost());
|
|
|
|
- result.setConversionsCountTotal(value2.getConversionsCount());
|
|
|
|
result.setConversionsCountDay(value2.getConversionsCount());
|
|
result.setConversionsCountDay(value2.getConversionsCount());
|
|
- result.setConversionsCountHour(value2.getConversionsCount());
|
|
|
|
- result.setConversionsCostAll(value2.getConversionsCost());
|
|
|
|
result.setConversionsCostDay(value2.getConversionsCost());
|
|
result.setConversionsCostDay(value2.getConversionsCost());
|
|
- result.setConversionsCostHour(value2.getConversionsCost());
|
|
|
|
- result.setConversionsRateAll(value2.getConversionsRate());
|
|
|
|
result.setConversionsRateDay(value2.getConversionsRate());
|
|
result.setConversionsRateDay(value2.getConversionsRate());
|
|
- result.setConversionsRateHour(value2.getConversionsRate());
|
|
|
|
- result.setDeepConversionsCountTotal(value2.getDeepConversionsCount());
|
|
|
|
result.setDeepConversionsCountDay(value2.getDeepConversionsCount());
|
|
result.setDeepConversionsCountDay(value2.getDeepConversionsCount());
|
|
- result.setDeepConversionsCountHour(value2.getDeepConversionsCount());
|
|
|
|
- result.setDeepConversionsCostAll(value2.getDeepConversionsCost());
|
|
|
|
result.setDeepConversionsCostDay(value2.getDeepConversionsCost());
|
|
result.setDeepConversionsCostDay(value2.getDeepConversionsCost());
|
|
- result.setDeepConversionsCostHour(value2.getDeepConversionsCost());
|
|
|
|
- result.setDeepConversionsRateAll(value2.getDeepConversionsRate());
|
|
|
|
result.setDeepConversionsRateDay(value2.getDeepConversionsRate());
|
|
result.setDeepConversionsRateDay(value2.getDeepConversionsRate());
|
|
- result.setDeepConversionsRateHour(value2.getDeepConversionsRate());
|
|
|
|
- result.setOrderCountTotal(value2.getOrderCount());
|
|
|
|
result.setOrderCountDay(value2.getOrderCount());
|
|
result.setOrderCountDay(value2.getOrderCount());
|
|
- result.setOrderCountHour(value2.getOrderCount());
|
|
|
|
- result.setFirstDayOrderCountTotal(value2.getFirstDayOrderCount());
|
|
|
|
result.setFirstDayOrderCountDay(value2.getFirstDayOrderCount());
|
|
result.setFirstDayOrderCountDay(value2.getFirstDayOrderCount());
|
|
- result.setFirstDayOrderCountHour(value2.getFirstDayOrderCount());
|
|
|
|
- result.setWebOrderCostAll(value2.getWebOrderCost());
|
|
|
|
result.setWebOrderCostDay(value2.getWebOrderCost());
|
|
result.setWebOrderCostDay(value2.getWebOrderCost());
|
|
- result.setWebOrderCostHour(value2.getWebOrderCost());
|
|
|
|
- result.setOrderRateAll(value2.getOrderRate());
|
|
|
|
result.setOrderRateDay(value2.getOrderRate());
|
|
result.setOrderRateDay(value2.getOrderRate());
|
|
- result.setOrderRateHour(value2.getOrderRate());
|
|
|
|
- result.setOrderAmountTotal(value2.getOrderAmount());
|
|
|
|
result.setOrderAmountDay(value2.getOrderAmount());
|
|
result.setOrderAmountDay(value2.getOrderAmount());
|
|
- result.setOrderAmountHour(value2.getOrderAmount());
|
|
|
|
- result.setFirstDayOrderAmountTotal(value2.getFirstDayOrderAmount());
|
|
|
|
result.setFirstDayOrderAmountDay(value2.getFirstDayOrderAmount());
|
|
result.setFirstDayOrderAmountDay(value2.getFirstDayOrderAmount());
|
|
- result.setFirstDayOrderAmountHour(value2.getFirstDayOrderAmount());
|
|
|
|
- result.setOrderUnitPriceAll(value2.getOrderUnitPrice());
|
|
|
|
result.setOrderUnitPriceDay(value2.getOrderUnitPrice());
|
|
result.setOrderUnitPriceDay(value2.getOrderUnitPrice());
|
|
- result.setOrderUnitPriceHour(value2.getOrderUnitPrice());
|
|
|
|
- result.setOrderRoiAll(value2.getOrderRoi());
|
|
|
|
result.setOrderRoiDay(value2.getOrderRoi());
|
|
result.setOrderRoiDay(value2.getOrderRoi());
|
|
- result.setOrderRoiHour(value2.getOrderRoi());
|
|
|
|
- result.setSignInCountTotal(value2.getSignInCount());
|
|
|
|
result.setSignInCountDay(value2.getSignInCount());
|
|
result.setSignInCountDay(value2.getSignInCount());
|
|
- result.setSignInCountHour(value2.getSignInCount());
|
|
|
|
- result.setScanFollowCountTotal(value2.getScanFollowCount());
|
|
|
|
result.setScanFollowCountDay(value2.getScanFollowCount());
|
|
result.setScanFollowCountDay(value2.getScanFollowCount());
|
|
- result.setScanFollowCountHour(value2.getScanFollowCount());
|
|
|
|
- result.setWechatAppRegisterUvTotal(value2.getWechatAppRegisterUv());
|
|
|
|
result.setWechatAppRegisterUvDay(value2.getWechatAppRegisterUv());
|
|
result.setWechatAppRegisterUvDay(value2.getWechatAppRegisterUv());
|
|
- result.setWechatAppRegisterUvHour(value2.getWechatAppRegisterUv());
|
|
|
|
- result.setWechatMinigameRegisterCostAll(value2.getWechatMinigameRegisterCost());
|
|
|
|
result.setWechatMinigameRegisterCostDay(value2.getWechatMinigameRegisterCost());
|
|
result.setWechatMinigameRegisterCostDay(value2.getWechatMinigameRegisterCost());
|
|
- result.setWechatMinigameRegisterCostHour(value2.getWechatMinigameRegisterCost());
|
|
|
|
- result.setWechatMinigameRegisterRateAll(value2.getWechatMinigameRegisterRate());
|
|
|
|
result.setWechatMinigameRegisterRateDay(value2.getWechatMinigameRegisterRate());
|
|
result.setWechatMinigameRegisterRateDay(value2.getWechatMinigameRegisterRate());
|
|
- result.setWechatMinigameRegisterRateHour(value2.getWechatMinigameRegisterRate());
|
|
|
|
- result.setWechatMinigameArpuAll(value2.getWechatMinigameArpu());
|
|
|
|
result.setWechatMinigameArpuDay(value2.getWechatMinigameArpu());
|
|
result.setWechatMinigameArpuDay(value2.getWechatMinigameArpu());
|
|
- result.setWechatMinigameArpuHour(value2.getWechatMinigameArpu());
|
|
|
|
- result.setWechatMinigameRetentionCountTotal(value2.getWechatMinigameRetentionCount());
|
|
|
|
result.setWechatMinigameRetentionCountDay(value2.getWechatMinigameRetentionCount());
|
|
result.setWechatMinigameRetentionCountDay(value2.getWechatMinigameRetentionCount());
|
|
- result.setWechatMinigameRetentionCountHour(value2.getWechatMinigameRetentionCount());
|
|
|
|
- result.setWechatMinigameCheckoutCountTotal(value2.getWechatMinigameCheckoutCount());
|
|
|
|
result.setWechatMinigameCheckoutCountDay(value2.getWechatMinigameCheckoutCount());
|
|
result.setWechatMinigameCheckoutCountDay(value2.getWechatMinigameCheckoutCount());
|
|
- result.setWechatMinigameCheckoutCountHour(value2.getWechatMinigameCheckoutCount());
|
|
|
|
- result.setWechatMinigameCheckoutAmountTotal(value2.getWechatMinigameCheckoutAmount());
|
|
|
|
result.setWechatMinigameCheckoutAmountDay(value2.getWechatMinigameCheckoutAmount());
|
|
result.setWechatMinigameCheckoutAmountDay(value2.getWechatMinigameCheckoutAmount());
|
|
- result.setWechatMinigameCheckoutAmountHour(value2.getWechatMinigameCheckoutAmount());
|
|
|
|
- result.setOfficialAccountFollowCountTotal(value2.getOfficialAccountFollowCount());
|
|
|
|
result.setOfficialAccountFollowCountDay(value2.getOfficialAccountFollowCount());
|
|
result.setOfficialAccountFollowCountDay(value2.getOfficialAccountFollowCount());
|
|
- result.setOfficialAccountFollowCountHour(value2.getOfficialAccountFollowCount());
|
|
|
|
- result.setOfficialAccountFollowRateAll(value2.getOfficialAccountFollowRate());
|
|
|
|
result.setOfficialAccountFollowRateDay(value2.getOfficialAccountFollowRate());
|
|
result.setOfficialAccountFollowRateDay(value2.getOfficialAccountFollowRate());
|
|
- result.setOfficialAccountFollowRateHour(value2.getOfficialAccountFollowRate());
|
|
|
|
- result.setOfficialAccountRegisterUserCountTotal(value2.getOfficialAccountRegisterUserCount());
|
|
|
|
result.setOfficialAccountRegisterUserCountDay(value2.getOfficialAccountRegisterUserCount());
|
|
result.setOfficialAccountRegisterUserCountDay(value2.getOfficialAccountRegisterUserCount());
|
|
- result.setOfficialAccountRegisterUserCountHour(value2.getOfficialAccountRegisterUserCount());
|
|
|
|
- result.setOfficialAccountRegisterRateAll(value2.getOfficialAccountRegisterRate());
|
|
|
|
result.setOfficialAccountRegisterRateDay(value2.getOfficialAccountRegisterRate());
|
|
result.setOfficialAccountRegisterRateDay(value2.getOfficialAccountRegisterRate());
|
|
- result.setOfficialAccountRegisterRateHour(value2.getOfficialAccountRegisterRate());
|
|
|
|
- result.setOfficialAccountRegisterCostAll(value2.getOfficialAccountRegisterCost());
|
|
|
|
result.setOfficialAccountRegisterCostDay(value2.getOfficialAccountRegisterCost());
|
|
result.setOfficialAccountRegisterCostDay(value2.getOfficialAccountRegisterCost());
|
|
- result.setOfficialAccountRegisterCostHour(value2.getOfficialAccountRegisterCost());
|
|
|
|
- result.setOfficialAccountRegisterAmountTotal(value2.getOfficialAccountRegisterAmount());
|
|
|
|
result.setOfficialAccountRegisterAmountDay(value2.getOfficialAccountRegisterAmount());
|
|
result.setOfficialAccountRegisterAmountDay(value2.getOfficialAccountRegisterAmount());
|
|
- result.setOfficialAccountRegisterAmountHour(value2.getOfficialAccountRegisterAmount());
|
|
|
|
- result.setOfficialAccountRegisterRoiAll(value2.getOfficialAccountRegisterRoi());
|
|
|
|
result.setOfficialAccountRegisterRoiDay(value2.getOfficialAccountRegisterRoi());
|
|
result.setOfficialAccountRegisterRoiDay(value2.getOfficialAccountRegisterRoi());
|
|
- result.setOfficialAccountRegisterRoiHour(value2.getOfficialAccountRegisterRoi());
|
|
|
|
- result.setOfficialAccountApplyCountTotal(value2.getOfficialAccountApplyCount());
|
|
|
|
result.setOfficialAccountApplyCountDay(value2.getOfficialAccountApplyCount());
|
|
result.setOfficialAccountApplyCountDay(value2.getOfficialAccountApplyCount());
|
|
- result.setOfficialAccountApplyCountHour(value2.getOfficialAccountApplyCount());
|
|
|
|
- result.setOfficialAccountApplyUserCountTotal(value2.getOfficialAccountApplyUserCount());
|
|
|
|
result.setOfficialAccountApplyUserCountDay(value2.getOfficialAccountApplyUserCount());
|
|
result.setOfficialAccountApplyUserCountDay(value2.getOfficialAccountApplyUserCount());
|
|
- result.setOfficialAccountApplyUserCountHour(value2.getOfficialAccountApplyUserCount());
|
|
|
|
- result.setOfficialAccountApplyRateAll(value2.getOfficialAccountApplyRate());
|
|
|
|
result.setOfficialAccountApplyRateDay(value2.getOfficialAccountApplyRate());
|
|
result.setOfficialAccountApplyRateDay(value2.getOfficialAccountApplyRate());
|
|
- result.setOfficialAccountApplyRateHour(value2.getOfficialAccountApplyRate());
|
|
|
|
- result.setOfficialAccountApplyCostAll(value2.getOfficialAccountApplyCost());
|
|
|
|
result.setOfficialAccountApplyCostDay(value2.getOfficialAccountApplyCost());
|
|
result.setOfficialAccountApplyCostDay(value2.getOfficialAccountApplyCost());
|
|
- result.setOfficialAccountApplyCostHour(value2.getOfficialAccountApplyCost());
|
|
|
|
- result.setOfficialAccountApplyAmountTotal(value2.getOfficialAccountApplyAmount());
|
|
|
|
result.setOfficialAccountApplyAmountDay(value2.getOfficialAccountApplyAmount());
|
|
result.setOfficialAccountApplyAmountDay(value2.getOfficialAccountApplyAmount());
|
|
- result.setOfficialAccountApplyAmountHour(value2.getOfficialAccountApplyAmount());
|
|
|
|
- result.setOfficialAccountApplyRoiAll(value2.getOfficialAccountApplyRoi());
|
|
|
|
result.setOfficialAccountApplyRoiDay(value2.getOfficialAccountApplyRoi());
|
|
result.setOfficialAccountApplyRoiDay(value2.getOfficialAccountApplyRoi());
|
|
- result.setOfficialAccountApplyRoiHour(value2.getOfficialAccountApplyRoi());
|
|
|
|
- result.setOfficialAccountOrderCountTotal(value2.getOfficialAccountOrderCount());
|
|
|
|
result.setOfficialAccountOrderCountDay(value2.getOfficialAccountOrderCount());
|
|
result.setOfficialAccountOrderCountDay(value2.getOfficialAccountOrderCount());
|
|
- result.setOfficialAccountOrderCountHour(value2.getOfficialAccountOrderCount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderCountTotal(value2.getOfficialAccountFirstDayOrderCount());
|
|
|
|
result.setOfficialAccountFirstDayOrderCountDay(value2.getOfficialAccountFirstDayOrderCount());
|
|
result.setOfficialAccountFirstDayOrderCountDay(value2.getOfficialAccountFirstDayOrderCount());
|
|
- result.setOfficialAccountFirstDayOrderCountHour(value2.getOfficialAccountFirstDayOrderCount());
|
|
|
|
- result.setOfficialAccountOrderUserCountTotal(value2.getOfficialAccountOrderUserCount());
|
|
|
|
result.setOfficialAccountOrderUserCountDay(value2.getOfficialAccountOrderUserCount());
|
|
result.setOfficialAccountOrderUserCountDay(value2.getOfficialAccountOrderUserCount());
|
|
- result.setOfficialAccountOrderUserCountHour(value2.getOfficialAccountOrderUserCount());
|
|
|
|
- result.setOfficialAccountOrderRateAll(value2.getOfficialAccountOrderRate());
|
|
|
|
result.setOfficialAccountOrderRateDay(value2.getOfficialAccountOrderRate());
|
|
result.setOfficialAccountOrderRateDay(value2.getOfficialAccountOrderRate());
|
|
- result.setOfficialAccountOrderRateHour(value2.getOfficialAccountOrderRate());
|
|
|
|
- result.setOfficialAccountOrderCostAll(value2.getOfficialAccountOrderCost());
|
|
|
|
result.setOfficialAccountOrderCostDay(value2.getOfficialAccountOrderCost());
|
|
result.setOfficialAccountOrderCostDay(value2.getOfficialAccountOrderCost());
|
|
- result.setOfficialAccountOrderCostHour(value2.getOfficialAccountOrderCost());
|
|
|
|
- result.setOfficialAccountOrderAmountTotal(value2.getOfficialAccountOrderAmount());
|
|
|
|
result.setOfficialAccountOrderAmountDay(value2.getOfficialAccountOrderAmount());
|
|
result.setOfficialAccountOrderAmountDay(value2.getOfficialAccountOrderAmount());
|
|
- result.setOfficialAccountOrderAmountHour(value2.getOfficialAccountOrderAmount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderAmountTotal(value2.getOfficialAccountFirstDayOrderAmount());
|
|
|
|
result.setOfficialAccountFirstDayOrderAmountDay(value2.getOfficialAccountFirstDayOrderAmount());
|
|
result.setOfficialAccountFirstDayOrderAmountDay(value2.getOfficialAccountFirstDayOrderAmount());
|
|
- result.setOfficialAccountFirstDayOrderAmountHour(value2.getOfficialAccountFirstDayOrderAmount());
|
|
|
|
- result.setOfficialAccountOrderRoiAll(value2.getOfficialAccountOrderRoi());
|
|
|
|
result.setOfficialAccountOrderRoiDay(value2.getOfficialAccountOrderRoi());
|
|
result.setOfficialAccountOrderRoiDay(value2.getOfficialAccountOrderRoi());
|
|
- result.setOfficialAccountOrderRoiHour(value2.getOfficialAccountOrderRoi());
|
|
|
|
- result.setOfficialAccountConsultCountTotal(value2.getOfficialAccountConsultCount());
|
|
|
|
result.setOfficialAccountConsultCountDay(value2.getOfficialAccountConsultCount());
|
|
result.setOfficialAccountConsultCountDay(value2.getOfficialAccountConsultCount());
|
|
- result.setOfficialAccountConsultCountHour(value2.getOfficialAccountConsultCount());
|
|
|
|
- result.setOfficialAccountReaderCountTotal(value2.getOfficialAccountReaderCount());
|
|
|
|
result.setOfficialAccountReaderCountDay(value2.getOfficialAccountReaderCount());
|
|
result.setOfficialAccountReaderCountDay(value2.getOfficialAccountReaderCount());
|
|
- result.setOfficialAccountReaderCountHour(value2.getOfficialAccountReaderCount());
|
|
|
|
- result.setOfficialAccountCreditApplyUserCountTotal(value2.getOfficialAccountCreditApplyUserCount());
|
|
|
|
result.setOfficialAccountCreditApplyUserCountDay(value2.getOfficialAccountCreditApplyUserCount());
|
|
result.setOfficialAccountCreditApplyUserCountDay(value2.getOfficialAccountCreditApplyUserCount());
|
|
- result.setOfficialAccountCreditApplyUserCountHour(value2.getOfficialAccountCreditApplyUserCount());
|
|
|
|
- result.setOfficialAccountCreditUserCountTotal(value2.getOfficialAccountCreditUserCount());
|
|
|
|
result.setOfficialAccountCreditUserCountDay(value2.getOfficialAccountCreditUserCount());
|
|
result.setOfficialAccountCreditUserCountDay(value2.getOfficialAccountCreditUserCount());
|
|
- result.setOfficialAccountCreditUserCountHour(value2.getOfficialAccountCreditUserCount());
|
|
|
|
- result.setForwardCountTotal(value2.getForwardCount());
|
|
|
|
result.setForwardCountDay(value2.getForwardCount());
|
|
result.setForwardCountDay(value2.getForwardCount());
|
|
- result.setForwardCountHour(value2.getForwardCount());
|
|
|
|
- result.setForwardUserCountTotal(value2.getForwardUserCount());
|
|
|
|
result.setForwardUserCountDay(value2.getForwardUserCount());
|
|
result.setForwardUserCountDay(value2.getForwardUserCount());
|
|
- result.setForwardUserCountHour(value2.getForwardUserCount());
|
|
|
|
- result.setNoInterestCountTotal(value2.getNoInterestCount());
|
|
|
|
result.setNoInterestCountDay(value2.getNoInterestCount());
|
|
result.setNoInterestCountDay(value2.getNoInterestCount());
|
|
- result.setNoInterestCountHour(value2.getNoInterestCount());
|
|
|
|
} else {
|
|
} else {
|
|
- // 是否是同一天
|
|
|
|
- boolean isUnSameDay = !value1.getStatDay().equals(value2.getStatDay());
|
|
|
|
- result.setCostDeviationRateTotal(value1.getCostDeviationRateTotal() + value2.getCostDeviationRate());
|
|
|
|
- result.setCostDeviationRateDay(isUnSameDay ? 0: value1.getCostDeviationRateDay() + value2.getCostDeviationRate());
|
|
|
|
- result.setCostDeviationRateHour(value2.getCostDeviationRate());
|
|
|
|
- result.setCostTotal(value1.getCostTotal() + value2.getCost());
|
|
|
|
- result.setCostDay(isUnSameDay ? 0: value1.getCostDay() + value2.getCost());
|
|
|
|
- result.setCostHour(value2.getCost());
|
|
|
|
- result.setCompensationAmountTotal(value1.getCompensationAmountTotal() + value2.getCompensationAmount());
|
|
|
|
- result.setCompensationAmountDay(isUnSameDay ? 0: value1.getCompensationAmountDay() + value2.getCompensationAmount());
|
|
|
|
- result.setCompensationAmountHour(value2.getCompensationAmount());
|
|
|
|
- result.setViewCountTotal(value1.getViewCountTotal() + value2.getViewCount());
|
|
|
|
- result.setViewCountDay(isUnSameDay ? 0: value1.getViewCountDay() + value2.getViewCount());
|
|
|
|
- result.setViewCountHour(value2.getViewCount());
|
|
|
|
|
|
+ result.setCostDeviationRateDay(value1.getCostDeviationRateDay() + value2.getCostDeviationRate());
|
|
|
|
+ result.setCostDay(value1.getCostDay() + value2.getCost());
|
|
|
|
+ result.setCompensationAmountDay(value1.getCompensationAmountDay() + value2.getCompensationAmount());
|
|
|
|
+ result.setViewCountDay(value1.getViewCountDay() + value2.getViewCount());
|
|
|
|
+ result.setThousandDisplayPriceDay(result.getViewCountDay() == 0 ? 0 : (result.getCostDay() / result.getViewCountDay() * 1000));
|
|
|
|
+ result.setValidClickCountDay(value1.getValidClickCountDay() + value2.getValidClickCount());
|
|
|
|
+ result.setCtrDay(result.getViewCountDay() == 0 ? 0.0 : result.getValidClickCountDay() / result.getViewCountDay());
|
|
|
|
+ result.setCpcDay(result.getValidClickCountDay() == 0 ? 0 : result.getCostDay() / result.getValidClickCountDay());
|
|
|
|
+ result.setValuableClickCountDay(value1.getValuableClickCountDay() + value2.getValuableClickCount());
|
|
|
|
+ result.setValuableClickRateDay(result.getViewCountDay() == 0 ? 0.0 : result.getValuableClickCountDay() / result.getViewCountDay());
|
|
|
|
+ result.setValuableClickCostDay(result.getValuableClickCountDay() == 0 ? 0 : result.getCostDay() / result.getValuableClickCountDay());
|
|
|
|
+ result.setConversionsCountDay(value1.getConversionsCountDay() + value2.getConversionsCount());
|
|
|
|
+ result.setConversionsCostDay(result.getConversionsCountDay() == 0 ? 0 : result.getCostDay() / result.getConversionsCountDay());
|
|
|
|
+ result.setConversionsRateDay(result.getValidClickCountDay() == 0 ? 0.0 : result.getConversionsCountDay() / result.getValidClickCountDay());
|
|
|
|
+ result.setDeepConversionsCountDay(value1.getDeepConversionsCountDay() + value2.getDeepConversionsCount());
|
|
|
|
+ result.setDeepConversionsCostDay(result.getDeepConversionsCountDay() == 0 ? 0 : result.getCostDay() / result.getDeepConversionsCountDay());
|
|
|
|
+ result.setDeepConversionsRateDay(result.getValuableClickCountDay() == 0 ? 0.0 : result.getDeepConversionsCountDay() / result.getValuableClickCountDay());
|
|
|
|
+ result.setOrderCountDay(value1.getOrderCountDay() + value2.getOrderCount());
|
|
|
|
+ result.setFirstDayOrderCountDay(value1.getFirstDayOrderCountDay() + value2.getFirstDayOrderCount());
|
|
|
|
+ result.setWebOrderCostDay(result.getOrderCountDay() == 0 ? 0 : result.getCostDay() / result.getOrderCountDay());
|
|
|
|
+ result.setOrderRateDay(result.getValidClickCountDay() == 0 ? 0.0 : result.getOrderCountDay() / result.getValidClickCountDay());
|
|
|
|
+ result.setOrderAmountDay(value1.getOrderAmountDay() + value2.getOrderAmount());
|
|
|
|
+ result.setFirstDayOrderAmountDay(value1.getFirstDayOrderAmountDay() + value2.getFirstDayOrderAmount());
|
|
|
|
+ result.setOrderUnitPriceDay(result.getOrderCountDay() == 0 ? 0 : result.getOrderAmountDay() / result.getOrderCountDay());
|
|
|
|
+ result.setOrderRoiDay(result.getCostDay() == 0 ? 0.0 : result.getOrderAmountDay() / result.getCostDay());
|
|
|
|
+ result.setSignInCountDay(value1.getSignInCountDay() + value2.getSignInCount());
|
|
|
|
+ result.setScanFollowCountDay(value1.getScanFollowCountDay() + value2.getScanFollowCount());
|
|
|
|
+ result.setWechatAppRegisterUvDay(value1.getWechatAppRegisterUvDay() + value2.getWechatAppRegisterUv());
|
|
|
|
+ result.setWechatMinigameRegisterCostDay(result.getWechatAppRegisterUvDay() == 0 ? 0 : result.getCostDay() / result.getWechatAppRegisterUvDay());
|
|
|
|
+ result.setWechatMinigameRegisterRateDay(result.getValidClickCountDay() == 0 ? 0.0 : result.getWechatAppRegisterUvDay() / result.getValidClickCountDay());
|
|
|
|
+ result.setWechatMinigameArpuDay(result.getWechatAppRegisterUvDay() == 0 ? 0.0 : result.getOrderAmountDay() / result.getWechatAppRegisterUvDay());
|
|
|
|
+ result.setWechatMinigameRetentionCountDay(value1.getWechatMinigameRetentionCountDay() + value2.getWechatMinigameRetentionCount());
|
|
|
|
+ result.setWechatMinigameCheckoutCountDay(value1.getWechatMinigameCheckoutCountDay() + value2.getWechatMinigameCheckoutCount());
|
|
|
|
+ result.setWechatMinigameCheckoutAmountDay(value1.getWechatMinigameCheckoutAmountDay() + value2.getWechatMinigameCheckoutAmount());
|
|
|
|
+ result.setOfficialAccountFollowCountDay(value1.getOfficialAccountFollowCountDay() + value2.getOfficialAccountFollowCount());
|
|
|
|
+ result.setOfficialAccountFollowRateDay(result.getValidClickCountDay() == 0 ? 0.0 : result.getOfficialAccountFollowCountDay() / result.getValidClickCountDay());
|
|
|
|
+ result.setOfficialAccountRegisterUserCountDay(value1.getOfficialAccountRegisterUserCountDay() + value2.getOfficialAccountRegisterUserCount());
|
|
|
|
+ result.setOfficialAccountRegisterRateDay(result.getOfficialAccountFollowCountDay() == 0 ? 0.0 : result.getOfficialAccountRegisterUserCountDay() / result.getOfficialAccountFollowCountDay());
|
|
|
|
+ result.setOfficialAccountRegisterCostDay(result.getOfficialAccountRegisterUserCountDay() == 0 ? 0 : result.getCostDay() / result.getOfficialAccountRegisterUserCountDay());
|
|
|
|
+ result.setOfficialAccountRegisterAmountDay(value1.getOfficialAccountRegisterAmountDay() + value2.getOfficialAccountRegisterAmount());
|
|
|
|
+ result.setOfficialAccountRegisterRoiDay(result.getCostDay() == 0 ? 0 : result.getOfficialAccountRegisterAmountDay() / result.getCostDay());
|
|
|
|
+ result.setOfficialAccountApplyCountDay(value1.getOfficialAccountApplyCountDay() + value2.getOfficialAccountApplyCount());
|
|
|
|
+ result.setOfficialAccountApplyUserCountDay(value1.getOfficialAccountApplyUserCountDay() + value2.getOfficialAccountApplyUserCount());
|
|
|
|
+ result.setOfficialAccountApplyRateDay(result.getOfficialAccountFollowCountDay() == 0 ? 0.0 : result.getOfficialAccountApplyUserCountDay() / result.getOfficialAccountFollowCountDay());
|
|
|
|
+ result.setOfficialAccountApplyCostDay(result.getOfficialAccountApplyUserCountDay() == 0 ? 0 : result.getCostDay() / result.getOfficialAccountApplyUserCountDay());
|
|
|
|
+ result.setOfficialAccountApplyAmountDay(value1.getOfficialAccountApplyAmountDay() + value2.getOfficialAccountApplyAmount());
|
|
|
|
+ result.setOfficialAccountApplyRoiDay(result.getCostDay() == 0 ? 0 : result.getOfficialAccountApplyAmountDay() / result.getCostDay());
|
|
|
|
+ result.setOfficialAccountOrderCountDay(value1.getOfficialAccountOrderCountDay() + value2.getOfficialAccountOrderCount());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderCountDay(value1.getOfficialAccountFirstDayOrderCountDay() + value2.getOfficialAccountFirstDayOrderCount());
|
|
|
|
+ result.setOfficialAccountOrderUserCountDay(value1.getOfficialAccountOrderUserCountDay() + value2.getOfficialAccountOrderUserCount());
|
|
|
|
+ result.setOfficialAccountOrderRateDay(result.getOfficialAccountFollowCountDay() == 0 ? 0.0 : result.getOfficialAccountOrderUserCountDay() / result.getOfficialAccountFollowCountDay());
|
|
|
|
+ result.setOfficialAccountOrderCostDay(result.getOfficialAccountOrderCountDay() == 0 ? 0 : result.getCostDay() / result.getOfficialAccountOrderCountDay());
|
|
|
|
+ result.setOfficialAccountOrderAmountDay(value1.getOfficialAccountOrderAmountDay() + value2.getOfficialAccountOrderAmount());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderAmountDay(value1.getOfficialAccountFirstDayOrderAmountDay() + value2.getOfficialAccountFirstDayOrderAmount());
|
|
|
|
+ result.setOfficialAccountOrderRoiDay(result.getCostDay() == 0 ? 0 : result.getOfficialAccountOrderAmountDay() / result.getCostDay());
|
|
|
|
+ result.setOfficialAccountConsultCountDay(value1.getOfficialAccountConsultCountDay() + value2.getOfficialAccountConsultCount());
|
|
|
|
+ result.setOfficialAccountReaderCountDay(value1.getOfficialAccountReaderCountDay() + value2.getOfficialAccountReaderCount());
|
|
|
|
+ result.setOfficialAccountCreditApplyUserCountDay(value1.getOfficialAccountCreditApplyUserCountDay() + value2.getOfficialAccountCreditApplyUserCount());
|
|
|
|
+ result.setOfficialAccountCreditUserCountDay(value1.getOfficialAccountCreditUserCountDay() + value2.getOfficialAccountCreditUserCount());
|
|
|
|
+ result.setForwardCountDay(value1.getForwardCountDay() + value2.getForwardCount());
|
|
|
|
+ result.setForwardUserCountDay(value1.getForwardUserCountDay() + value2.getForwardUserCount());
|
|
|
|
+ result.setNoInterestCountDay(value1.getNoInterestCountDay() + value2.getNoInterestCount());
|
|
|
|
+ }
|
|
|
|
+ if (yesterdayDWD == null) {
|
|
|
|
+ result.setCostDeviationRateTotal(result.getCostDeviationRateDay());
|
|
|
|
+ result.setCostTotal(result.getCostDay());
|
|
|
|
+ result.setCompensationAmountTotal(result.getCompensationAmountDay());
|
|
|
|
+ result.setViewCountTotal(result.getViewCountDay());
|
|
|
|
+ result.setThousandDisplayPriceAll(result.getThousandDisplayPriceDay());
|
|
|
|
+ result.setValidClickCountTotal(result.getValidClickCountDay());
|
|
|
|
+ result.setCtrAll(result.getCtrDay());
|
|
|
|
+ result.setCpcAll(result.getCpcDay());
|
|
|
|
+ result.setValuableClickCountTotal(result.getValuableClickCountDay());
|
|
|
|
+ result.setValuableClickRateAll(result.getValuableClickRateDay());
|
|
|
|
+ result.setValuableClickCostAll(result.getValuableClickCostDay());
|
|
|
|
+ result.setConversionsCountTotal(result.getConversionsCountDay());
|
|
|
|
+ result.setConversionsCostAll(result.getConversionsCostDay());
|
|
|
|
+ result.setConversionsRateAll(result.getConversionsRateDay());
|
|
|
|
+ result.setDeepConversionsCountTotal(result.getDeepConversionsCountDay());
|
|
|
|
+ result.setDeepConversionsCostAll(result.getDeepConversionsCostDay());
|
|
|
|
+ result.setDeepConversionsRateAll(result.getDeepConversionsRateDay());
|
|
|
|
+ result.setOrderCountTotal(result.getOrderCountDay());
|
|
|
|
+ result.setFirstDayOrderCountTotal(result.getFirstDayOrderCountDay());
|
|
|
|
+ result.setWebOrderCostAll(result.getWebOrderCostDay());
|
|
|
|
+ result.setOrderRateAll(result.getOrderRateDay());
|
|
|
|
+ result.setOrderAmountTotal(result.getOrderAmountDay());
|
|
|
|
+ result.setFirstDayOrderAmountTotal(result.getFirstDayOrderAmountDay());
|
|
|
|
+ result.setOrderUnitPriceAll(result.getOrderUnitPriceDay());
|
|
|
|
+ result.setOrderRoiAll(result.getOrderRoiDay());
|
|
|
|
+ result.setSignInCountTotal(result.getSignInCountDay());
|
|
|
|
+ result.setScanFollowCountTotal(result.getScanFollowCountDay());
|
|
|
|
+ result.setWechatAppRegisterUvTotal(result.getWechatAppRegisterUvDay());
|
|
|
|
+ result.setWechatMinigameRegisterCostAll(result.getWechatMinigameRegisterCostDay());
|
|
|
|
+ result.setWechatMinigameRegisterRateAll(result.getWechatMinigameRegisterRateDay());
|
|
|
|
+ result.setWechatMinigameArpuAll(result.getWechatMinigameArpuDay());
|
|
|
|
+ result.setWechatMinigameRetentionCountTotal(result.getWechatMinigameRetentionCountDay());
|
|
|
|
+ result.setWechatMinigameCheckoutCountTotal(result.getWechatMinigameCheckoutCountDay());
|
|
|
|
+ result.setWechatMinigameCheckoutAmountTotal(result.getWechatMinigameCheckoutAmountDay());
|
|
|
|
+ result.setOfficialAccountFollowCountTotal(result.getOfficialAccountFollowCountDay());
|
|
|
|
+ result.setOfficialAccountFollowRateAll(result.getOfficialAccountFollowRateDay());
|
|
|
|
+ result.setOfficialAccountRegisterUserCountTotal(result.getOfficialAccountRegisterUserCountDay());
|
|
|
|
+ result.setOfficialAccountRegisterRateAll(result.getOfficialAccountRegisterRateDay());
|
|
|
|
+ result.setOfficialAccountRegisterCostAll(result.getOfficialAccountRegisterCostDay());
|
|
|
|
+ result.setOfficialAccountRegisterAmountTotal(result.getOfficialAccountRegisterAmountDay());
|
|
|
|
+ result.setOfficialAccountRegisterRoiAll(result.getOfficialAccountRegisterRoiDay());
|
|
|
|
+ result.setOfficialAccountApplyCountTotal(result.getOfficialAccountApplyCountDay());
|
|
|
|
+ result.setOfficialAccountApplyUserCountTotal(result.getOfficialAccountApplyUserCountDay());
|
|
|
|
+ result.setOfficialAccountApplyRateAll(result.getOfficialAccountApplyRateDay());
|
|
|
|
+ result.setOfficialAccountApplyCostAll(result.getOfficialAccountApplyCostDay());
|
|
|
|
+ result.setOfficialAccountApplyAmountTotal(result.getOfficialAccountApplyAmountDay());
|
|
|
|
+ result.setOfficialAccountApplyRoiAll(result.getOfficialAccountApplyRoiDay());
|
|
|
|
+ result.setOfficialAccountOrderCountTotal(result.getOfficialAccountOrderCountDay());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderCountTotal(result.getOfficialAccountFirstDayOrderCountDay());
|
|
|
|
+ result.setOfficialAccountOrderUserCountTotal(result.getOfficialAccountOrderUserCountDay());
|
|
|
|
+ result.setOfficialAccountOrderRateAll(result.getOfficialAccountOrderRateDay());
|
|
|
|
+ result.setOfficialAccountOrderCostAll(result.getOfficialAccountOrderCostDay());
|
|
|
|
+ result.setOfficialAccountOrderAmountTotal(result.getOfficialAccountOrderAmountDay());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderAmountTotal(result.getOfficialAccountFirstDayOrderAmountDay());
|
|
|
|
+ result.setOfficialAccountOrderRoiAll(result.getOfficialAccountOrderRoiDay());
|
|
|
|
+ result.setOfficialAccountConsultCountTotal(result.getOfficialAccountConsultCountDay());
|
|
|
|
+ result.setOfficialAccountReaderCountTotal(result.getOfficialAccountReaderCountDay());
|
|
|
|
+ result.setOfficialAccountCreditApplyUserCountTotal(result.getOfficialAccountCreditApplyUserCountDay());
|
|
|
|
+ result.setOfficialAccountCreditUserCountTotal(result.getOfficialAccountCreditUserCountDay());
|
|
|
|
+ result.setForwardCountTotal(result.getForwardCountDay());
|
|
|
|
+ result.setForwardUserCountTotal(result.getForwardUserCountDay());
|
|
|
|
+ result.setNoInterestCountTotal(result.getNoInterestCountDay());
|
|
|
|
+ } else {
|
|
|
|
+ result.setCostDeviationRateTotal(yesterdayDWD.getCostDeviationRateTotal() + result.getCostDeviationRateDay());
|
|
|
|
+ result.setCostTotal(yesterdayDWD.getCostTotal() + result.getCostDay());
|
|
|
|
+ result.setCompensationAmountTotal(yesterdayDWD.getCompensationAmountTotal() + result.getCompensationAmountDay());
|
|
|
|
+ result.setViewCountTotal(yesterdayDWD.getViewCountTotal() + result.getViewCountDay());
|
|
// 总消耗 / 总曝光
|
|
// 总消耗 / 总曝光
|
|
result.setThousandDisplayPriceAll(result.getViewCountTotal() == 0 ? 0 : (result.getCostTotal() / result.getViewCountTotal() * 1000));
|
|
result.setThousandDisplayPriceAll(result.getViewCountTotal() == 0 ? 0 : (result.getCostTotal() / result.getViewCountTotal() * 1000));
|
|
- result.setThousandDisplayPriceDay(isUnSameDay ? 0: result.getViewCountDay() == 0 ? 0 : (result.getCostDay() / result.getViewCountDay() * 1000));
|
|
|
|
- result.setThousandDisplayPriceHour(value2.getThousandDisplayPrice());
|
|
|
|
// 曝光次数 / 曝光人数(拿不到曝光人数)
|
|
// 曝光次数 / 曝光人数(拿不到曝光人数)
|
|
- result.setAvgViewPerUserHour(value2.getAvgViewPerUser());
|
|
|
|
- result.setValidClickCountTotal(value1.getValidClickCountTotal() + value2.getValidClickCount());
|
|
|
|
- result.setValidClickCountDay(isUnSameDay ? 0: value1.getValidClickCountDay() + value2.getValidClickCount());
|
|
|
|
- result.setValidClickCountHour(value2.getValidClickCount());
|
|
|
|
|
|
+ result.setValidClickCountTotal(yesterdayDWD.getValidClickCountTotal() + result.getValidClickCountDay());
|
|
// 广告点击次数 / 广告曝光次数
|
|
// 广告点击次数 / 广告曝光次数
|
|
result.setCtrAll(result.getViewCountTotal() == 0 ? 0.0 : result.getValidClickCountTotal() / result.getViewCountTotal());
|
|
result.setCtrAll(result.getViewCountTotal() == 0 ? 0.0 : result.getValidClickCountTotal() / result.getViewCountTotal());
|
|
- result.setCtrDay(isUnSameDay ? 0: result.getViewCountDay() == 0 ? 0.0 : result.getValidClickCountDay() / result.getViewCountDay());
|
|
|
|
- result.setCtrHour(value2.getCtr());
|
|
|
|
// 广告花费/广告点击次数
|
|
// 广告花费/广告点击次数
|
|
result.setCpcAll(result.getValidClickCountTotal() == 0 ? 0 : result.getCostTotal() / result.getValidClickCountTotal());
|
|
result.setCpcAll(result.getValidClickCountTotal() == 0 ? 0 : result.getCostTotal() / result.getValidClickCountTotal());
|
|
- result.setCpcDay(isUnSameDay ? 0: result.getValidClickCountDay() == 0 ? 0 : result.getCostDay() / result.getValidClickCountDay());
|
|
|
|
- result.setCpcHour(value2.getCpc());
|
|
|
|
- result.setValuableClickCountTotal(value1.getValuableClickCountTotal() + value2.getValuableClickCount());
|
|
|
|
- result.setValuableClickCountDay(isUnSameDay ? 0: value1.getValuableClickCountDay() + value2.getValuableClickCount());
|
|
|
|
- result.setValuableClickCountHour(value2.getValuableClickCount());
|
|
|
|
|
|
+ result.setValuableClickCountTotal(yesterdayDWD.getValuableClickCountTotal() + result.getValuableClickCountDay());
|
|
// 广告可转化点击次数/广告曝光次数
|
|
// 广告可转化点击次数/广告曝光次数
|
|
result.setValuableClickRateAll(result.getViewCountTotal() == 0 ? 0.0 : result.getValuableClickCountTotal() / result.getViewCountTotal());
|
|
result.setValuableClickRateAll(result.getViewCountTotal() == 0 ? 0.0 : result.getValuableClickCountTotal() / result.getViewCountTotal());
|
|
- result.setValuableClickRateDay(isUnSameDay ? 0: result.getViewCountDay() == 0 ? 0.0 : result.getValuableClickCountDay() / result.getViewCountDay());
|
|
|
|
- result.setValuableClickRateHour(value2.getValuableClickRate());
|
|
|
|
// 广告花费/可转化点击次数
|
|
// 广告花费/可转化点击次数
|
|
result.setValuableClickCostAll(result.getValuableClickCountTotal() == 0 ? 0 : result.getCostTotal() / result.getValuableClickCountTotal());
|
|
result.setValuableClickCostAll(result.getValuableClickCountTotal() == 0 ? 0 : result.getCostTotal() / result.getValuableClickCountTotal());
|
|
- result.setValuableClickCostDay(isUnSameDay ? 0: result.getValuableClickCountDay() == 0 ? 0 : result.getCostDay() / result.getValuableClickCountDay());
|
|
|
|
- result.setValuableClickCostHour(value2.getValuableClickCost());
|
|
|
|
- result.setConversionsCountTotal(value1.getConversionsCountTotal() + value2.getConversionsCount());
|
|
|
|
- result.setConversionsCountDay(isUnSameDay ? 0: value1.getConversionsCountDay() + value2.getConversionsCount());
|
|
|
|
- result.setConversionsCountHour(value2.getConversionsCount());
|
|
|
|
|
|
+ result.setConversionsCountTotal(yesterdayDWD.getConversionsCountTotal() + result.getConversionsCountDay());
|
|
// 广告花费/转化目标量
|
|
// 广告花费/转化目标量
|
|
result.setConversionsCostAll(result.getConversionsCountTotal() == 0 ? 0 : result.getCostTotal() / result.getConversionsCountTotal());
|
|
result.setConversionsCostAll(result.getConversionsCountTotal() == 0 ? 0 : result.getCostTotal() / result.getConversionsCountTotal());
|
|
- result.setConversionsCostDay(isUnSameDay ? 0: result.getConversionsCountDay() == 0 ? 0 : result.getCostDay() / result.getConversionsCountDay());
|
|
|
|
- result.setConversionsCostHour(value2.getConversionsCost());
|
|
|
|
// 公众号:转化目标量/点击次数。
|
|
// 公众号:转化目标量/点击次数。
|
|
result.setConversionsRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getConversionsCountTotal() / result.getValidClickCountTotal());
|
|
result.setConversionsRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getConversionsCountTotal() / result.getValidClickCountTotal());
|
|
- result.setConversionsRateDay(isUnSameDay ? 0: result.getValidClickCountDay() == 0 ? 0.0 : result.getConversionsCountDay() / result.getValidClickCountDay());
|
|
|
|
- result.setConversionsRateHour(value2.getConversionsRate());
|
|
|
|
- result.setDeepConversionsCountTotal(value1.getDeepConversionsCountTotal() + value2.getDeepConversionsCount());
|
|
|
|
- result.setDeepConversionsCountDay(isUnSameDay ? 0: value1.getDeepConversionsCountDay() + value2.getDeepConversionsCount());
|
|
|
|
- result.setDeepConversionsCountHour(value2.getDeepConversionsCount());
|
|
|
|
|
|
+ result.setDeepConversionsCountTotal(yesterdayDWD.getDeepConversionsCountTotal() + result.getDeepConversionsCountDay());
|
|
// 广告花费/深度转化目标量
|
|
// 广告花费/深度转化目标量
|
|
result.setDeepConversionsCostAll(result.getDeepConversionsCountTotal() == 0 ? 0 : result.getCostTotal() / result.getDeepConversionsCountTotal());
|
|
result.setDeepConversionsCostAll(result.getDeepConversionsCountTotal() == 0 ? 0 : result.getCostTotal() / result.getDeepConversionsCountTotal());
|
|
- result.setDeepConversionsCostDay(isUnSameDay ? 0: result.getDeepConversionsCountDay() == 0 ? 0 : result.getCostDay() / result.getDeepConversionsCountDay());
|
|
|
|
- result.setDeepConversionsCostHour(value2.getDeepConversionsCost());
|
|
|
|
// 深度转化目标量/可转化点击次数
|
|
// 深度转化目标量/可转化点击次数
|
|
result.setDeepConversionsRateAll(result.getValuableClickCountTotal() == 0 ? 0.0 : result.getDeepConversionsCountTotal() / result.getValuableClickCountTotal());
|
|
result.setDeepConversionsRateAll(result.getValuableClickCountTotal() == 0 ? 0.0 : result.getDeepConversionsCountTotal() / result.getValuableClickCountTotal());
|
|
- result.setDeepConversionsRateDay(isUnSameDay ? 0: result.getValuableClickCountDay() == 0 ? 0.0 : result.getDeepConversionsCountDay() / result.getValuableClickCountDay());
|
|
|
|
- result.setDeepConversionsRateHour(value2.getDeepConversionsRate());
|
|
|
|
- result.setOrderCountTotal(value1.getOrderCountTotal() + value2.getOrderCount());
|
|
|
|
- result.setOrderCountDay(isUnSameDay ? 0: value1.getOrderCountDay() + value2.getOrderCount());
|
|
|
|
- result.setOrderCountHour(value2.getOrderCount());
|
|
|
|
- result.setFirstDayOrderCountTotal(value1.getFirstDayOrderCountTotal() + value2.getFirstDayOrderCount());
|
|
|
|
- result.setFirstDayOrderCountDay(isUnSameDay ? 0: value1.getFirstDayOrderCountDay() + value2.getFirstDayOrderCount());
|
|
|
|
- result.setFirstDayOrderCountHour(value2.getFirstDayOrderCount());
|
|
|
|
|
|
+ result.setOrderCountTotal(yesterdayDWD.getOrderCountTotal() + result.getOrderCountDay());
|
|
|
|
+ result.setFirstDayOrderCountTotal(yesterdayDWD.getFirstDayOrderCountTotal() + result.getFirstDayOrderCountDay());
|
|
// 广告花费/下单量
|
|
// 广告花费/下单量
|
|
result.setWebOrderCostAll(result.getOrderCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOrderCountTotal());
|
|
result.setWebOrderCostAll(result.getOrderCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOrderCountTotal());
|
|
- result.setWebOrderCostDay(isUnSameDay ? 0: result.getOrderCountDay() == 0 ? 0 : result.getCostDay() / result.getOrderCountDay());
|
|
|
|
- result.setWebOrderCostHour(value2.getWebOrderCost());
|
|
|
|
// 下单量/点击次数
|
|
// 下单量/点击次数
|
|
result.setOrderRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getOrderCountTotal() / result.getValidClickCountTotal());
|
|
result.setOrderRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getOrderCountTotal() / result.getValidClickCountTotal());
|
|
- result.setOrderRateDay(isUnSameDay ? 0: result.getValidClickCountDay() == 0 ? 0.0 : result.getOrderCountDay() / result.getValidClickCountDay());
|
|
|
|
- result.setOrderRateHour(value2.getOrderRate());
|
|
|
|
- result.setOrderAmountTotal(value1.getOrderAmountTotal() + value2.getOrderAmount());
|
|
|
|
- result.setOrderAmountDay(isUnSameDay ? 0: value1.getOrderAmountDay() + value2.getOrderAmount());
|
|
|
|
- result.setOrderAmountHour(value2.getOrderAmount());
|
|
|
|
- result.setFirstDayOrderAmountTotal(value1.getFirstDayOrderAmountTotal() + value2.getFirstDayOrderAmount());
|
|
|
|
- result.setFirstDayOrderAmountDay(isUnSameDay ? 0: value1.getFirstDayOrderAmountDay() + value2.getFirstDayOrderAmount());
|
|
|
|
- result.setFirstDayOrderAmountHour(value2.getFirstDayOrderAmount());
|
|
|
|
|
|
+ result.setOrderAmountTotal(yesterdayDWD.getOrderAmountTotal() + result.getOrderAmountDay());
|
|
|
|
+ result.setFirstDayOrderAmountTotal(yesterdayDWD.getFirstDayOrderAmountTotal() + result.getFirstDayOrderAmountDay());
|
|
// 下单金额/下单量
|
|
// 下单金额/下单量
|
|
result.setOrderUnitPriceAll(result.getOrderCountTotal() == 0 ? 0 : result.getOrderAmountTotal() / result.getOrderCountTotal());
|
|
result.setOrderUnitPriceAll(result.getOrderCountTotal() == 0 ? 0 : result.getOrderAmountTotal() / result.getOrderCountTotal());
|
|
- result.setOrderUnitPriceDay(isUnSameDay ? 0: result.getOrderCountDay() == 0 ? 0 : result.getOrderAmountDay() / result.getOrderCountDay());
|
|
|
|
- result.setOrderUnitPriceHour(value2.getOrderUnitPrice());
|
|
|
|
// 下单金额/广告花费
|
|
// 下单金额/广告花费
|
|
result.setOrderRoiAll(result.getCostTotal() == 0 ? 0.0 : result.getOrderAmountTotal() / result.getCostTotal());
|
|
result.setOrderRoiAll(result.getCostTotal() == 0 ? 0.0 : result.getOrderAmountTotal() / result.getCostTotal());
|
|
- result.setOrderRoiDay(isUnSameDay ? 0: result.getCostDay() == 0 ? 0.0 : result.getOrderAmountDay() / result.getCostDay());
|
|
|
|
- result.setOrderRoiHour(value2.getOrderRoi());
|
|
|
|
- result.setSignInCountTotal(value1.getSignInCountTotal() + value2.getSignInCount());
|
|
|
|
- result.setSignInCountDay(value1.getSignInCountDay() + value2.getSignInCount());
|
|
|
|
- result.setSignInCountHour(value2.getSignInCount());
|
|
|
|
- result.setScanFollowCountTotal(value1.getScanFollowCountTotal() + value2.getScanFollowCount());
|
|
|
|
- result.setScanFollowCountDay(isUnSameDay ? 0: value1.getScanFollowCountDay() + value2.getScanFollowCount());
|
|
|
|
- result.setScanFollowCountHour(value2.getScanFollowCount());
|
|
|
|
- result.setWechatAppRegisterUvTotal(value1.getWechatAppRegisterUvTotal() + value2.getWechatAppRegisterUv());
|
|
|
|
- result.setWechatAppRegisterUvDay(isUnSameDay ? 0: value1.getWechatAppRegisterUvDay() + value2.getWechatAppRegisterUv());
|
|
|
|
- result.setWechatAppRegisterUvHour(value2.getWechatAppRegisterUv());
|
|
|
|
|
|
+ result.setSignInCountTotal(yesterdayDWD.getSignInCountTotal() + result.getSignInCountDay());
|
|
|
|
+ result.setScanFollowCountTotal(yesterdayDWD.getScanFollowCountTotal() + result.getScanFollowCountDay());
|
|
|
|
+ result.setWechatAppRegisterUvTotal(yesterdayDWD.getWechatAppRegisterUvTotal() + result.getWechatAppRegisterUvDay());
|
|
// 广告消耗 / 小游戏注册人数
|
|
// 广告消耗 / 小游戏注册人数
|
|
result.setWechatMinigameRegisterCostAll(result.getWechatAppRegisterUvTotal() == 0 ? 0 : result.getCostTotal() / result.getWechatAppRegisterUvTotal());
|
|
result.setWechatMinigameRegisterCostAll(result.getWechatAppRegisterUvTotal() == 0 ? 0 : result.getCostTotal() / result.getWechatAppRegisterUvTotal());
|
|
- result.setWechatMinigameRegisterCostDay(isUnSameDay ? 0: result.getWechatAppRegisterUvDay() == 0 ? 0 : result.getCostDay() / result.getWechatAppRegisterUvDay());
|
|
|
|
- result.setWechatMinigameRegisterCostHour(value2.getWechatMinigameRegisterCost());
|
|
|
|
// 小游戏注册人数 / 广告点击次数
|
|
// 小游戏注册人数 / 广告点击次数
|
|
result.setWechatMinigameRegisterRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getWechatAppRegisterUvTotal() / result.getValidClickCountTotal());
|
|
result.setWechatMinigameRegisterRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getWechatAppRegisterUvTotal() / result.getValidClickCountTotal());
|
|
- result.setWechatMinigameRegisterRateDay(isUnSameDay ? 0: result.getValidClickCountDay() == 0 ? 0.0 : result.getWechatAppRegisterUvDay() / result.getValidClickCountDay());
|
|
|
|
- result.setWechatMinigameRegisterRateHour(value2.getWechatMinigameRegisterRate());
|
|
|
|
// 总收益 / 总人数
|
|
// 总收益 / 总人数
|
|
result.setWechatMinigameArpuAll(result.getWechatAppRegisterUvTotal() == 0 ? 0.0 : result.getOrderAmountTotal() / result.getWechatAppRegisterUvTotal());
|
|
result.setWechatMinigameArpuAll(result.getWechatAppRegisterUvTotal() == 0 ? 0.0 : result.getOrderAmountTotal() / result.getWechatAppRegisterUvTotal());
|
|
- result.setWechatMinigameArpuDay(isUnSameDay ? 0: result.getWechatAppRegisterUvDay() == 0 ? 0.0 : result.getOrderAmountDay() / result.getWechatAppRegisterUvDay());
|
|
|
|
- result.setWechatMinigameArpuHour(value2.getWechatMinigameArpu());
|
|
|
|
- result.setWechatMinigameRetentionCountTotal(value1.getWechatMinigameRetentionCountTotal() + value2.getWechatMinigameRetentionCount());
|
|
|
|
- result.setWechatMinigameRetentionCountDay(isUnSameDay ? 0: value1.getWechatMinigameRetentionCountDay() + value2.getWechatMinigameRetentionCount());
|
|
|
|
- result.setWechatMinigameRetentionCountHour(value2.getWechatMinigameRetentionCount());
|
|
|
|
- result.setWechatMinigameCheckoutCountTotal(value1.getWechatMinigameCheckoutCountTotal() + value2.getWechatMinigameCheckoutCount());
|
|
|
|
- result.setWechatMinigameCheckoutCountDay(isUnSameDay ? 0: value1.getWechatMinigameCheckoutCountDay() + value2.getWechatMinigameCheckoutCount());
|
|
|
|
- result.setWechatMinigameCheckoutCountHour(value2.getWechatMinigameCheckoutCount());
|
|
|
|
- result.setWechatMinigameCheckoutAmountTotal(value1.getWechatMinigameCheckoutAmountTotal() + value2.getWechatMinigameCheckoutAmount());
|
|
|
|
- result.setWechatMinigameCheckoutAmountDay(isUnSameDay ? 0: value1.getWechatMinigameCheckoutAmountDay() + value2.getWechatMinigameCheckoutAmount());
|
|
|
|
- result.setWechatMinigameCheckoutAmountHour(value2.getWechatMinigameCheckoutAmount());
|
|
|
|
- result.setOfficialAccountFollowCountTotal(value1.getOfficialAccountFollowCountTotal() + value2.getOfficialAccountFollowCount());
|
|
|
|
- result.setOfficialAccountFollowCountDay(isUnSameDay ? 0: value1.getOfficialAccountFollowCountDay() + value2.getOfficialAccountFollowCount());
|
|
|
|
- result.setOfficialAccountFollowCountHour(value2.getOfficialAccountFollowCount());
|
|
|
|
|
|
+ result.setWechatMinigameRetentionCountTotal(yesterdayDWD.getWechatMinigameRetentionCountTotal() + result.getWechatMinigameRetentionCountDay());
|
|
|
|
+ result.setWechatMinigameCheckoutCountTotal(yesterdayDWD.getWechatMinigameCheckoutCountTotal() + result.getWechatMinigameCheckoutCountDay());
|
|
|
|
+ result.setWechatMinigameCheckoutAmountTotal(yesterdayDWD.getWechatMinigameCheckoutAmountTotal() + result.getWechatMinigameCheckoutAmountDay());
|
|
|
|
+ result.setOfficialAccountFollowCountTotal(yesterdayDWD.getOfficialAccountFollowCountTotal() + result.getOfficialAccountFollowCountDay());
|
|
// 关注次数 / 点击次数
|
|
// 关注次数 / 点击次数
|
|
result.setOfficialAccountFollowRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getOfficialAccountFollowCountTotal() / result.getValidClickCountTotal());
|
|
result.setOfficialAccountFollowRateAll(result.getValidClickCountTotal() == 0 ? 0.0 : result.getOfficialAccountFollowCountTotal() / result.getValidClickCountTotal());
|
|
- result.setOfficialAccountFollowRateDay(isUnSameDay ? 0: result.getValidClickCountDay() == 0 ? 0.0 : result.getOfficialAccountFollowCountDay() / result.getValidClickCountDay());
|
|
|
|
- result.setOfficialAccountFollowRateHour(value2.getOfficialAccountFollowRate());
|
|
|
|
- result.setOfficialAccountRegisterUserCountTotal(value1.getOfficialAccountRegisterUserCountTotal() + value2.getOfficialAccountRegisterUserCount());
|
|
|
|
- result.setOfficialAccountRegisterUserCountDay(isUnSameDay ? 0: value1.getOfficialAccountRegisterUserCountDay() + value2.getOfficialAccountRegisterUserCount());
|
|
|
|
- result.setOfficialAccountRegisterUserCountHour(value2.getOfficialAccountRegisterUserCount());
|
|
|
|
|
|
+ result.setOfficialAccountRegisterUserCountTotal(yesterdayDWD.getOfficialAccountRegisterUserCountTotal() + result.getOfficialAccountRegisterUserCountDay());
|
|
// 公众号内注册人数 / 公众号关注次数
|
|
// 公众号内注册人数 / 公众号关注次数
|
|
result.setOfficialAccountRegisterRateAll(result.getOfficialAccountFollowCountTotal() == 0 ? 0.0 : result.getOfficialAccountRegisterUserCountTotal() / result.getOfficialAccountFollowCountTotal());
|
|
result.setOfficialAccountRegisterRateAll(result.getOfficialAccountFollowCountTotal() == 0 ? 0.0 : result.getOfficialAccountRegisterUserCountTotal() / result.getOfficialAccountFollowCountTotal());
|
|
- result.setOfficialAccountRegisterRateDay(isUnSameDay ? 0: result.getOfficialAccountFollowCountDay() == 0 ? 0.0 : result.getOfficialAccountRegisterUserCountDay() / result.getOfficialAccountFollowCountDay());
|
|
|
|
- result.setOfficialAccountRegisterRateHour(value2.getOfficialAccountRegisterRate());
|
|
|
|
// 广告消耗 / 广告注册人数
|
|
// 广告消耗 / 广告注册人数
|
|
result.setOfficialAccountRegisterCostAll(result.getOfficialAccountRegisterUserCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOfficialAccountRegisterUserCountTotal());
|
|
result.setOfficialAccountRegisterCostAll(result.getOfficialAccountRegisterUserCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOfficialAccountRegisterUserCountTotal());
|
|
- result.setOfficialAccountRegisterCostDay(isUnSameDay ? 0: result.getOfficialAccountRegisterUserCountDay() == 0 ? 0 : result.getCostDay() / result.getOfficialAccountRegisterUserCountDay());
|
|
|
|
- result.setOfficialAccountRegisterCostHour(value2.getOfficialAccountRegisterCost());
|
|
|
|
- result.setOfficialAccountRegisterAmountTotal(value1.getOfficialAccountRegisterAmountTotal() + value2.getOfficialAccountRegisterAmount());
|
|
|
|
- result.setOfficialAccountRegisterAmountDay(isUnSameDay ? 0: value1.getOfficialAccountRegisterAmountDay() + value2.getOfficialAccountRegisterAmount());
|
|
|
|
- result.setOfficialAccountRegisterAmountHour(value2.getOfficialAccountRegisterAmount());
|
|
|
|
|
|
+ result.setOfficialAccountRegisterAmountTotal(yesterdayDWD.getOfficialAccountRegisterAmountTotal() + result.getOfficialAccountRegisterAmountDay());
|
|
// 注册产生的订单金额累计/广告花费
|
|
// 注册产生的订单金额累计/广告花费
|
|
result.setOfficialAccountRegisterRoiAll(result.getCostTotal() == 0 ? 0 : result.getOfficialAccountRegisterAmountTotal() / result.getCostTotal());
|
|
result.setOfficialAccountRegisterRoiAll(result.getCostTotal() == 0 ? 0 : result.getOfficialAccountRegisterAmountTotal() / result.getCostTotal());
|
|
- result.setOfficialAccountRegisterRoiDay(isUnSameDay ? 0: result.getCostDay() == 0 ? 0 : result.getOfficialAccountRegisterAmountDay() / result.getCostDay());
|
|
|
|
- result.setOfficialAccountRegisterRoiHour(value2.getOfficialAccountRegisterRoi());
|
|
|
|
- result.setOfficialAccountApplyCountTotal(value1.getOfficialAccountApplyCountTotal() + value2.getOfficialAccountApplyCount());
|
|
|
|
- result.setOfficialAccountApplyCountDay(isUnSameDay ? 0: value1.getOfficialAccountApplyCountDay() + value2.getOfficialAccountApplyCount());
|
|
|
|
- result.setOfficialAccountApplyCountHour(value2.getOfficialAccountApplyCount());
|
|
|
|
- result.setOfficialAccountApplyUserCountTotal(value1.getOfficialAccountApplyUserCountTotal() + value2.getOfficialAccountApplyUserCount());
|
|
|
|
- result.setOfficialAccountApplyUserCountDay(isUnSameDay ? 0: value1.getOfficialAccountApplyUserCountDay() + value2.getOfficialAccountApplyUserCount());
|
|
|
|
- result.setOfficialAccountApplyUserCountHour(value2.getOfficialAccountApplyUserCount());
|
|
|
|
|
|
+ result.setOfficialAccountApplyCountTotal(yesterdayDWD.getOfficialAccountApplyCountTotal() + result.getOfficialAccountApplyCountDay());
|
|
|
|
+ result.setOfficialAccountApplyUserCountTotal(yesterdayDWD.getOfficialAccountApplyUserCountTotal() + result.getOfficialAccountApplyUserCountDay());
|
|
// 公众号内填单的独立用户数/公众号关注次数
|
|
// 公众号内填单的独立用户数/公众号关注次数
|
|
result.setOfficialAccountApplyRateAll(result.getOfficialAccountFollowCountTotal() == 0 ? 0.0 : result.getOfficialAccountApplyUserCountTotal() / result.getOfficialAccountFollowCountTotal());
|
|
result.setOfficialAccountApplyRateAll(result.getOfficialAccountFollowCountTotal() == 0 ? 0.0 : result.getOfficialAccountApplyUserCountTotal() / result.getOfficialAccountFollowCountTotal());
|
|
- result.setOfficialAccountApplyRateDay(isUnSameDay ? 0: result.getOfficialAccountFollowCountDay() == 0 ? 0.0 : result.getOfficialAccountApplyUserCountDay() / result.getOfficialAccountFollowCountDay());
|
|
|
|
- result.setOfficialAccountApplyRateHour(value2.getOfficialAccountApplyRate());
|
|
|
|
// 广告花费/广告产生的填单行为数量
|
|
// 广告花费/广告产生的填单行为数量
|
|
result.setOfficialAccountApplyCostAll(result.getOfficialAccountApplyUserCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOfficialAccountApplyUserCountTotal());
|
|
result.setOfficialAccountApplyCostAll(result.getOfficialAccountApplyUserCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOfficialAccountApplyUserCountTotal());
|
|
- result.setOfficialAccountApplyCostDay(isUnSameDay ? 0: result.getOfficialAccountApplyUserCountDay() == 0 ? 0 : result.getCostDay() / result.getOfficialAccountApplyUserCountDay());
|
|
|
|
- result.setOfficialAccountApplyCostHour(value2.getOfficialAccountApplyCost());
|
|
|
|
- result.setOfficialAccountApplyAmountTotal(value1.getOfficialAccountApplyAmountTotal() + value2.getOfficialAccountApplyAmount());
|
|
|
|
- result.setOfficialAccountApplyAmountDay(isUnSameDay ? 0: value1.getOfficialAccountApplyAmountDay() + value2.getOfficialAccountApplyAmount());
|
|
|
|
- result.setOfficialAccountApplyAmountHour(value2.getOfficialAccountApplyAmount());
|
|
|
|
|
|
+ result.setOfficialAccountApplyAmountTotal(yesterdayDWD.getOfficialAccountApplyAmountTotal() + result.getOfficialAccountApplyAmountDay());
|
|
// 填单产生的订单金额累计/广告花费
|
|
// 填单产生的订单金额累计/广告花费
|
|
result.setOfficialAccountApplyRoiAll(result.getCostTotal() == 0 ? 0 : result.getOfficialAccountApplyAmountTotal() / result.getCostTotal());
|
|
result.setOfficialAccountApplyRoiAll(result.getCostTotal() == 0 ? 0 : result.getOfficialAccountApplyAmountTotal() / result.getCostTotal());
|
|
- result.setOfficialAccountApplyRoiDay(isUnSameDay ? 0: result.getCostDay() == 0 ? 0 : result.getOfficialAccountApplyAmountDay() / result.getCostDay());
|
|
|
|
- result.setOfficialAccountApplyRoiHour(value2.getOfficialAccountApplyRoi());
|
|
|
|
- result.setOfficialAccountOrderCountTotal(value1.getOfficialAccountOrderCountTotal() + value2.getOfficialAccountOrderCount());
|
|
|
|
- result.setOfficialAccountOrderCountDay(isUnSameDay ? 0: value1.getOfficialAccountOrderCountDay() + value2.getOfficialAccountOrderCount());
|
|
|
|
- result.setOfficialAccountOrderCountHour(value2.getOfficialAccountOrderCount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderCountTotal(value1.getOfficialAccountFirstDayOrderCountTotal() + value2.getOfficialAccountFirstDayOrderCount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderCountDay(isUnSameDay ? 0: value1.getOfficialAccountFirstDayOrderCountDay() + value2.getOfficialAccountFirstDayOrderCount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderCountHour(value2.getOfficialAccountFirstDayOrderCount());
|
|
|
|
- result.setOfficialAccountOrderUserCountTotal(value1.getOfficialAccountOrderUserCountTotal() + value2.getOfficialAccountOrderUserCount());
|
|
|
|
- result.setOfficialAccountOrderUserCountDay(isUnSameDay ? 0: value1.getOfficialAccountOrderUserCountDay() + value2.getOfficialAccountOrderUserCount());
|
|
|
|
- result.setOfficialAccountOrderUserCountHour(value2.getOfficialAccountOrderUserCount());
|
|
|
|
|
|
+ result.setOfficialAccountOrderCountTotal(yesterdayDWD.getOfficialAccountOrderCountTotal() + result.getOfficialAccountOrderCountDay());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderCountTotal(yesterdayDWD.getOfficialAccountFirstDayOrderCountTotal() + result.getOfficialAccountFirstDayOrderCountDay());
|
|
|
|
+ result.setOfficialAccountOrderUserCountTotal(yesterdayDWD.getOfficialAccountOrderUserCountTotal() + result.getOfficialAccountOrderUserCountDay());
|
|
// 公众号内下单独立用户数(UV)/公众号关注次数
|
|
// 公众号内下单独立用户数(UV)/公众号关注次数
|
|
result.setOfficialAccountOrderRateAll(result.getOfficialAccountFollowCountTotal() == 0 ? 0.0 : result.getOfficialAccountOrderUserCountTotal() / result.getOfficialAccountFollowCountTotal());
|
|
result.setOfficialAccountOrderRateAll(result.getOfficialAccountFollowCountTotal() == 0 ? 0.0 : result.getOfficialAccountOrderUserCountTotal() / result.getOfficialAccountFollowCountTotal());
|
|
- result.setOfficialAccountOrderRateDay(isUnSameDay ? 0: result.getOfficialAccountFollowCountDay() == 0 ? 0.0 : result.getOfficialAccountOrderUserCountDay() / result.getOfficialAccountFollowCountDay());
|
|
|
|
- result.setOfficialAccountOrderRateHour(value2.getOfficialAccountOrderRate());
|
|
|
|
// 广告花费/广告产生的下单行为数量
|
|
// 广告花费/广告产生的下单行为数量
|
|
result.setOfficialAccountOrderCostAll(result.getOfficialAccountOrderCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOfficialAccountOrderCountTotal());
|
|
result.setOfficialAccountOrderCostAll(result.getOfficialAccountOrderCountTotal() == 0 ? 0 : result.getCostTotal() / result.getOfficialAccountOrderCountTotal());
|
|
- result.setOfficialAccountOrderCostDay(isUnSameDay ? 0: result.getOfficialAccountOrderCountDay() == 0 ? 0 : result.getCostDay() / result.getOfficialAccountOrderCountDay());
|
|
|
|
- result.setOfficialAccountOrderCostHour(value2.getOfficialAccountOrderCost());
|
|
|
|
- result.setOfficialAccountOrderAmountTotal(value1.getOfficialAccountOrderAmountTotal() + value2.getOfficialAccountOrderAmount());
|
|
|
|
- result.setOfficialAccountOrderAmountDay(isUnSameDay ? 0: value1.getOfficialAccountOrderAmountDay() + value2.getOfficialAccountOrderAmount());
|
|
|
|
- result.setOfficialAccountOrderAmountHour(value2.getOfficialAccountOrderAmount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderAmountTotal(value1.getOfficialAccountFirstDayOrderAmountTotal() + value2.getOfficialAccountFirstDayOrderAmount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderAmountDay(isUnSameDay ? 0: value1.getOfficialAccountFirstDayOrderAmountDay() + value2.getOfficialAccountFirstDayOrderAmount());
|
|
|
|
- result.setOfficialAccountFirstDayOrderAmountHour(value2.getOfficialAccountFirstDayOrderAmount());
|
|
|
|
|
|
+ result.setOfficialAccountOrderAmountTotal(yesterdayDWD.getOfficialAccountOrderAmountTotal() + result.getOfficialAccountOrderAmountDay());
|
|
|
|
+ result.setOfficialAccountFirstDayOrderAmountTotal(yesterdayDWD.getOfficialAccountFirstDayOrderAmountTotal() + result.getOfficialAccountFirstDayOrderAmountDay());
|
|
// 下单产生的订单金额累计/广告花费
|
|
// 下单产生的订单金额累计/广告花费
|
|
result.setOfficialAccountOrderRoiAll(result.getCostTotal() == 0 ? 0 : result.getOfficialAccountOrderAmountTotal() / result.getCostTotal());
|
|
result.setOfficialAccountOrderRoiAll(result.getCostTotal() == 0 ? 0 : result.getOfficialAccountOrderAmountTotal() / result.getCostTotal());
|
|
- result.setOfficialAccountOrderRoiDay(isUnSameDay ? 0: result.getCostDay() == 0 ? 0 : result.getOfficialAccountOrderAmountDay() / result.getCostDay());
|
|
|
|
- result.setOfficialAccountOrderRoiHour(value2.getOfficialAccountOrderRoi());
|
|
|
|
- result.setOfficialAccountConsultCountTotal(value1.getOfficialAccountConsultCountTotal() + value2.getOfficialAccountConsultCount());
|
|
|
|
- result.setOfficialAccountConsultCountDay(isUnSameDay ? 0: value1.getOfficialAccountConsultCountDay() + value2.getOfficialAccountConsultCount());
|
|
|
|
- result.setOfficialAccountConsultCountHour(value2.getOfficialAccountConsultCount());
|
|
|
|
- result.setOfficialAccountReaderCountTotal(value1.getOfficialAccountReaderCountTotal() + value2.getOfficialAccountReaderCount());
|
|
|
|
- result.setOfficialAccountReaderCountDay(isUnSameDay ? 0: value1.getOfficialAccountReaderCountDay() + value2.getOfficialAccountReaderCount());
|
|
|
|
- result.setOfficialAccountReaderCountHour(value2.getOfficialAccountReaderCount());
|
|
|
|
- result.setOfficialAccountCreditApplyUserCountTotal(value1.getOfficialAccountCreditApplyUserCountTotal() + value2.getOfficialAccountCreditApplyUserCount());
|
|
|
|
- result.setOfficialAccountCreditApplyUserCountDay(isUnSameDay ? 0: value1.getOfficialAccountCreditApplyUserCountDay() + value2.getOfficialAccountCreditApplyUserCount());
|
|
|
|
- result.setOfficialAccountCreditApplyUserCountHour(value2.getOfficialAccountCreditApplyUserCount());
|
|
|
|
- result.setOfficialAccountCreditUserCountTotal(value1.getOfficialAccountCreditUserCountTotal() + value2.getOfficialAccountCreditUserCount());
|
|
|
|
- result.setOfficialAccountCreditUserCountDay(isUnSameDay ? 0: value1.getOfficialAccountCreditUserCountDay() + value2.getOfficialAccountCreditUserCount());
|
|
|
|
- result.setOfficialAccountCreditUserCountHour(value2.getOfficialAccountCreditUserCount());
|
|
|
|
- result.setForwardCountTotal(value1.getForwardCountTotal() + value2.getForwardCount());
|
|
|
|
- result.setForwardCountDay(isUnSameDay ? 0: value1.getForwardCountDay() + value2.getForwardCount());
|
|
|
|
- result.setForwardCountHour(value2.getForwardCount());
|
|
|
|
- result.setForwardUserCountTotal(value1.getForwardUserCountTotal() + value2.getForwardUserCount());
|
|
|
|
- result.setForwardUserCountDay(isUnSameDay ? 0: value1.getForwardUserCountDay() + value2.getForwardUserCount());
|
|
|
|
- result.setForwardUserCountHour(value2.getForwardUserCount());
|
|
|
|
- result.setNoInterestCountTotal(value1.getNoInterestCountTotal() + value2.getNoInterestCount());
|
|
|
|
- result.setNoInterestCountDay(isUnSameDay ? 0: value1.getNoInterestCountDay() + value2.getNoInterestCount());
|
|
|
|
- result.setNoInterestCountHour(value2.getNoInterestCount());
|
|
|
|
|
|
+ result.setOfficialAccountConsultCountTotal(yesterdayDWD.getOfficialAccountConsultCountTotal() + result.getOfficialAccountConsultCountDay());
|
|
|
|
+ result.setOfficialAccountReaderCountTotal(yesterdayDWD.getOfficialAccountReaderCountTotal() + result.getOfficialAccountReaderCountDay());
|
|
|
|
+ result.setOfficialAccountCreditApplyUserCountTotal(yesterdayDWD.getOfficialAccountCreditApplyUserCountTotal() + result.getOfficialAccountCreditApplyUserCountDay());
|
|
|
|
+ result.setOfficialAccountCreditUserCountTotal(yesterdayDWD.getOfficialAccountCreditUserCountTotal() + result.getOfficialAccountCreditUserCountDay());
|
|
|
|
+ result.setForwardCountTotal(yesterdayDWD.getForwardCountTotal() + result.getForwardCountDay());
|
|
|
|
+ result.setForwardUserCountTotal(yesterdayDWD.getForwardUserCountTotal() + result.getForwardUserCountDay());
|
|
|
|
+ result.setNoInterestCountTotal(yesterdayDWD.getNoInterestCountTotal() + result.getNoInterestCountDay());
|
|
}
|
|
}
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
@@ -1898,4 +1837,194 @@ public class AdStatOfHourDWD {
|
|
result.setNoInterestCountHour(ObjectUtil.toLong(record.get("no_interest_count_hour")));
|
|
result.setNoInterestCountHour(ObjectUtil.toLong(record.get("no_interest_count_hour")));
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public static void initValue(AdStatOfHourDWD bean) {
|
|
|
|
+ bean.setCostDeviationRateTotal(0.0);
|
|
|
|
+ bean.setCostDeviationRateDay(0.0);
|
|
|
|
+ bean.setCostDeviationRateHour(0.0);
|
|
|
|
+ bean.setCostTotal(0L);
|
|
|
|
+ bean.setCostDay(0L);
|
|
|
|
+ bean.setCostHour(0L);
|
|
|
|
+ bean.setCompensationAmountTotal(0L);
|
|
|
|
+ bean.setCompensationAmountDay(0L);
|
|
|
|
+ bean.setCompensationAmountHour(0L);
|
|
|
|
+ bean.setViewCountTotal(0L);
|
|
|
|
+ bean.setViewCountDay(0L);
|
|
|
|
+ bean.setViewCountHour(0L);
|
|
|
|
+ bean.setThousandDisplayPriceAll(0L);
|
|
|
|
+ bean.setThousandDisplayPriceDay(0L);
|
|
|
|
+ bean.setThousandDisplayPriceHour(0L);
|
|
|
|
+ bean.setAvgViewPerUserHour(0.0);
|
|
|
|
+ bean.setValidClickCountTotal(0L);
|
|
|
|
+ bean.setValidClickCountDay(0L);
|
|
|
|
+ bean.setValidClickCountHour(0L);
|
|
|
|
+ bean.setCtrAll(0.0);
|
|
|
|
+ bean.setCtrDay(0.0);
|
|
|
|
+ bean.setCtrHour(0.0);
|
|
|
|
+ bean.setCpcAll(0L);
|
|
|
|
+ bean.setCpcDay(0L);
|
|
|
|
+ bean.setCpcHour(0L);
|
|
|
|
+ bean.setValuableClickCountTotal(0L);
|
|
|
|
+ bean.setValuableClickCountDay(0L);
|
|
|
|
+ bean.setValuableClickCountHour(0L);
|
|
|
|
+ bean.setValuableClickRateAll(0.0);
|
|
|
|
+ bean.setValuableClickRateDay(0.0);
|
|
|
|
+ bean.setValuableClickRateHour(0.0);
|
|
|
|
+ bean.setValuableClickCostAll(0L);
|
|
|
|
+ bean.setValuableClickCostDay(0L);
|
|
|
|
+ bean.setValuableClickCostHour(0L);
|
|
|
|
+ bean.setConversionsCountTotal(0L);
|
|
|
|
+ bean.setConversionsCountDay(0L);
|
|
|
|
+ bean.setConversionsCountHour(0L);
|
|
|
|
+ bean.setConversionsCostAll(0L);
|
|
|
|
+ bean.setConversionsCostDay(0L);
|
|
|
|
+ bean.setConversionsCostHour(0L);
|
|
|
|
+ bean.setConversionsRateAll(0.0);
|
|
|
|
+ bean.setConversionsRateDay(0.0);
|
|
|
|
+ bean.setConversionsRateHour(0.0);
|
|
|
|
+ bean.setDeepConversionsCountTotal(0L);
|
|
|
|
+ bean.setDeepConversionsCountDay(0L);
|
|
|
|
+ bean.setDeepConversionsCountHour(0L);
|
|
|
|
+ bean.setDeepConversionsCostAll(0L);
|
|
|
|
+ bean.setDeepConversionsCostDay(0L);
|
|
|
|
+ bean.setDeepConversionsCostHour(0L);
|
|
|
|
+ bean.setDeepConversionsRateAll(0.0);
|
|
|
|
+ bean.setDeepConversionsRateDay(0.0);
|
|
|
|
+ bean.setDeepConversionsRateHour(0.0);
|
|
|
|
+ bean.setOrderCountTotal(0L);
|
|
|
|
+ bean.setOrderCountDay(0L);
|
|
|
|
+ bean.setOrderCountHour(0L);
|
|
|
|
+ bean.setFirstDayOrderCountTotal(0L);
|
|
|
|
+ bean.setFirstDayOrderCountDay(0L);
|
|
|
|
+ bean.setFirstDayOrderCountHour(0L);
|
|
|
|
+ bean.setWebOrderCostAll(0L);
|
|
|
|
+ bean.setWebOrderCostDay(0L);
|
|
|
|
+ bean.setWebOrderCostHour(0L);
|
|
|
|
+ bean.setOrderRateAll(0.0);
|
|
|
|
+ bean.setOrderRateDay(0.0);
|
|
|
|
+ bean.setOrderRateHour(0.0);
|
|
|
|
+ bean.setOrderAmountTotal(0L);
|
|
|
|
+ bean.setOrderAmountDay(0L);
|
|
|
|
+ bean.setOrderAmountHour(0L);
|
|
|
|
+ bean.setFirstDayOrderAmountTotal(0L);
|
|
|
|
+ bean.setFirstDayOrderAmountDay(0L);
|
|
|
|
+ bean.setFirstDayOrderAmountHour(0L);
|
|
|
|
+ bean.setOrderUnitPriceAll(0L);
|
|
|
|
+ bean.setOrderUnitPriceDay(0L);
|
|
|
|
+ bean.setOrderUnitPriceHour(0L);
|
|
|
|
+ bean.setOrderRoiAll(0.0);
|
|
|
|
+ bean.setOrderRoiDay(0.0);
|
|
|
|
+ bean.setOrderRoiHour(0.0);
|
|
|
|
+ bean.setSignInCountTotal(0L);
|
|
|
|
+ bean.setSignInCountDay(0L);
|
|
|
|
+ bean.setSignInCountHour(0L);
|
|
|
|
+ bean.setScanFollowCountTotal(0L);
|
|
|
|
+ bean.setScanFollowCountDay(0L);
|
|
|
|
+ bean.setScanFollowCountHour(0L);
|
|
|
|
+ bean.setWechatAppRegisterUvTotal(0L);
|
|
|
|
+ bean.setWechatAppRegisterUvDay(0L);
|
|
|
|
+ bean.setWechatAppRegisterUvHour(0L);
|
|
|
|
+ bean.setWechatMinigameRegisterCostAll(0L);
|
|
|
|
+ bean.setWechatMinigameRegisterCostDay(0L);
|
|
|
|
+ bean.setWechatMinigameRegisterCostHour(0L);
|
|
|
|
+ bean.setWechatMinigameRegisterRateAll(0.0);
|
|
|
|
+ bean.setWechatMinigameRegisterRateDay(0.0);
|
|
|
|
+ bean.setWechatMinigameRegisterRateHour(0.0);
|
|
|
|
+ bean.setWechatMinigameArpuAll(0.0);
|
|
|
|
+ bean.setWechatMinigameArpuDay(0.0);
|
|
|
|
+ bean.setWechatMinigameArpuHour(0.0);
|
|
|
|
+ bean.setWechatMinigameRetentionCountTotal(0L);
|
|
|
|
+ bean.setWechatMinigameRetentionCountDay(0L);
|
|
|
|
+ bean.setWechatMinigameRetentionCountHour(0L);
|
|
|
|
+ bean.setWechatMinigameCheckoutCountTotal(0L);
|
|
|
|
+ bean.setWechatMinigameCheckoutCountDay(0L);
|
|
|
|
+ bean.setWechatMinigameCheckoutCountHour(0L);
|
|
|
|
+ bean.setWechatMinigameCheckoutAmountTotal(0L);
|
|
|
|
+ bean.setWechatMinigameCheckoutAmountDay(0L);
|
|
|
|
+ bean.setWechatMinigameCheckoutAmountHour(0L);
|
|
|
|
+ bean.setOfficialAccountFollowCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountFollowCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountFollowCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountFollowRateAll(0.0);
|
|
|
|
+ bean.setOfficialAccountFollowRateDay(0.0);
|
|
|
|
+ bean.setOfficialAccountFollowRateHour(0.0);
|
|
|
|
+ bean.setOfficialAccountRegisterUserCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterUserCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterUserCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterRateAll(0.0);
|
|
|
|
+ bean.setOfficialAccountRegisterRateDay(0.0);
|
|
|
|
+ bean.setOfficialAccountRegisterRateHour(0.0);
|
|
|
|
+ bean.setOfficialAccountRegisterCostAll(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterCostDay(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterCostHour(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterAmountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterAmountDay(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterAmountHour(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterRoiAll(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterRoiDay(0L);
|
|
|
|
+ bean.setOfficialAccountRegisterRoiHour(0L);
|
|
|
|
+ bean.setOfficialAccountApplyCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountApplyCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountApplyCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountApplyUserCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountApplyUserCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountApplyUserCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountApplyRateAll(0.0);
|
|
|
|
+ bean.setOfficialAccountApplyRateDay(0.0);
|
|
|
|
+ bean.setOfficialAccountApplyRateHour(0.0);
|
|
|
|
+ bean.setOfficialAccountApplyCostAll(0L);
|
|
|
|
+ bean.setOfficialAccountApplyCostDay(0L);
|
|
|
|
+ bean.setOfficialAccountApplyCostHour(0L);
|
|
|
|
+ bean.setOfficialAccountApplyAmountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountApplyAmountDay(0L);
|
|
|
|
+ bean.setOfficialAccountApplyAmountHour(0L);
|
|
|
|
+ bean.setOfficialAccountApplyRoiAll(0L);
|
|
|
|
+ bean.setOfficialAccountApplyRoiDay(0L);
|
|
|
|
+ bean.setOfficialAccountApplyRoiHour(0L);
|
|
|
|
+ bean.setOfficialAccountOrderCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountOrderCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountOrderCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountFirstDayOrderCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountFirstDayOrderCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountFirstDayOrderCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountOrderUserCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountOrderUserCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountOrderUserCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountOrderRateAll(0.0);
|
|
|
|
+ bean.setOfficialAccountOrderRateDay(0.0);
|
|
|
|
+ bean.setOfficialAccountOrderRateHour(0.0);
|
|
|
|
+ bean.setOfficialAccountOrderCostAll(0L);
|
|
|
|
+ bean.setOfficialAccountOrderCostDay(0L);
|
|
|
|
+ bean.setOfficialAccountOrderCostHour(0L);
|
|
|
|
+ bean.setOfficialAccountOrderAmountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountOrderAmountDay(0L);
|
|
|
|
+ bean.setOfficialAccountOrderAmountHour(0L);
|
|
|
|
+ bean.setOfficialAccountFirstDayOrderAmountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountFirstDayOrderAmountDay(0L);
|
|
|
|
+ bean.setOfficialAccountFirstDayOrderAmountHour(0L);
|
|
|
|
+ bean.setOfficialAccountOrderRoiAll(0L);
|
|
|
|
+ bean.setOfficialAccountOrderRoiDay(0L);
|
|
|
|
+ bean.setOfficialAccountOrderRoiHour(0L);
|
|
|
|
+ bean.setOfficialAccountConsultCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountConsultCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountConsultCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountReaderCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountReaderCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountReaderCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountCreditApplyUserCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountCreditApplyUserCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountCreditApplyUserCountHour(0L);
|
|
|
|
+ bean.setOfficialAccountCreditUserCountTotal(0L);
|
|
|
|
+ bean.setOfficialAccountCreditUserCountDay(0L);
|
|
|
|
+ bean.setOfficialAccountCreditUserCountHour(0L);
|
|
|
|
+ bean.setForwardCountTotal(0L);
|
|
|
|
+ bean.setForwardCountDay(0L);
|
|
|
|
+ bean.setForwardCountHour(0L);
|
|
|
|
+ bean.setForwardUserCountTotal(0L);
|
|
|
|
+ bean.setForwardUserCountDay(0L);
|
|
|
|
+ bean.setForwardUserCountHour(0L);
|
|
|
|
+ bean.setNoInterestCountTotal(0L);
|
|
|
|
+ bean.setNoInterestCountDay(0L);
|
|
|
|
+ bean.setNoInterestCountHour(0L);
|
|
|
|
+ }
|
|
}
|
|
}
|