diff --git a/Application/Home/Controller/QueryController.class.php b/Application/Home/Controller/QueryController.class.php index 82dbdd106..b66b62c7c 100644 --- a/Application/Home/Controller/QueryController.class.php +++ b/Application/Home/Controller/QueryController.class.php @@ -1991,15 +1991,40 @@ class QueryController extends BaseController $records = []; if (intval($endTime - $beginTime) / (24 * 3600) <= 7) { $promoteRepository = new PromoteRepository(); + $time1 = microtime(true); $createRoleCountList = $promoteRepository->getCreateRoleCountByIds($ids, $params); + $time2 = microtime(true); + echo $time2 - $time1; + echo "
"; $createRoleUserCountList = $promoteRepository->getCreateRoleUserCountByIds($ids, $params); + $time3 = microtime(true); + echo $time3 - $time2; + echo "
"; $newCreateRoleUserCountList = $promoteRepository->getNewCreateRoleUserCountByIds($ids, $params); + $time4 = microtime(true); + echo $time4 - $time3; + echo "
"; // $newCreateRoleDeviceCountList = $promoteRepository->getNewCreateRoleDeviceCountByIds($ids, $params); $newCreateRoleIpCountList = $promoteRepository->getNewCreateRoleIpCountByIds($ids, $params); + $time5 = microtime(true); + echo $time5 - $time4; + echo "
"; $loginUserCountList = $promoteRepository->getLoginUserCountByIds($ids, $params); + $time6 = microtime(true); + echo $time6 - $time5; + echo "
"; $rechargeCountList = $promoteRepository->getRechargeCountByIds($ids, $params); + $time7 = microtime(true); + echo $time7 - $time6; + echo "
"; $rechargeUserCountList = $promoteRepository->getRechargeUserCountByIds($ids, $params); + $time8 = microtime(true); + echo $time8 - $time7; + echo "
"; $rechargeAmountList = $promoteRepository->getRechargeAmountByIds($ids, $params); + $time9 = microtime(true); + echo $time9 - $time8; + echo "
"; if (I('p', 1) == 1) { $selfParams = $params;