1:修改业务类型642的direction值为0-2

2:修改trafficTopicList和trafficTopicAndDomainChart接口的返回值
3:修改asn统计的返回值单位(兆)
4:修改ip范围查询使用end>=searchIp and start<=searchIp
This commit is contained in:
renkaige
2018-12-18 06:05:16 +06:00
parent 2d9404f63b
commit 579cd007c2
5 changed files with 178 additions and 134 deletions

View File

@@ -903,9 +903,9 @@ public class DashboardServiceController extends BaseRestController {
} else {
Calendar cal = Calendar.getInstance();
cal.setTime(new Date());
Date begin1 = cal.getTime();// 获取到完整的时间
Date end1 = cal.getTime();// 获取到完整的时间
cal.set(Calendar.HOUR_OF_DAY, cal.get(Calendar.HOUR_OF_DAY) - 1);
Date end1 = cal.getTime();
Date begin1 = cal.getTime();
// 带查询时间查询所有
List<Map> websiteChart = dashboardService.getTopicDetails(begin1, end1);
if (websiteChart != null && websiteChart.size() > 0) {