Package com.alibaba.otter.manager.biz.statistics.table.param

Examples of com.alibaba.otter.manager.biz.statistics.table.param.TimelineBehaviorHistoryCondition


        DataMediaPair dataMediaPair = dataMediaPairService.findById(dataMediaPairId);
        Channel channel = channelService.findByPipelineId(dataMediaPair.getPipelineId());

        Map<Long, BehaviorHistoryInfo> behaviourHistoryInfos = new LinkedHashMap<Long, BehaviorHistoryInfo>();

        TimelineBehaviorHistoryCondition condition = new TimelineBehaviorHistoryCondition();

        if (null != start && null != end) {
            condition.setStart(start);
            condition.setEnd(end);
            condition.setPairId(dataMediaPairId);
            behaviourHistoryInfos = tableStatService.listTimelineBehaviorHistory(condition);
        }

        Long totalInsert = 0L;
        Long totalUpdate = 0L;
View Full Code Here

TOP

Related Classes of com.alibaba.otter.manager.biz.statistics.table.param.TimelineBehaviorHistoryCondition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.