修改流量统计中上段时间countInteger类型改为Long

This commit is contained in:
zhanghongqing
2018-12-01 16:45:46 +08:00
parent 47fdfd1afd
commit 5221c2cbad
3 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ public interface TrafficUaStatisticDao {
Map browserOthers(@Param("osType") List osType,@Param("bsType") Integer bsType,@Param("statTime") Date statTime);
Integer preSystemListCount(@Param("osType") Integer osType,@Param("statTime") Date statTime);
Long preSystemListCount(@Param("osType") Integer osType,@Param("statTime") Date statTime);
Integer preBrowserListCount(@Param("bsType") Integer bsType,@Param("statTime") Date statTime);
Long preBrowserListCount(@Param("bsType") Integer bsType,@Param("statTime") Date statTime);
}