大屏统计图表接口返回值增加上一段时间参数preCount,其它类型others

This commit is contained in:
zhanghongqing
2018-07-23 17:44:18 +08:00
parent d5aff2e139
commit 5079032c09
8 changed files with 157 additions and 29 deletions

View File

@@ -17,4 +17,12 @@ public interface TrafficUaStatisticDao {
List<TrafficUaStatistic> browserList();
List<Map> getSystemBybrowser(@Param("bsType") Integer bsType);
Map systemOthers(@Param("bsType") List bsType,@Param("osType") Integer osType);
Map browserOthers(@Param("osType") List osType,@Param("bsType") Integer bsType);
Integer preSystemListCount(@Param("osType") Integer osType);
Integer preBrowserListCount(@Param("bsType") Integer bsType);
}