From e575e3107cb2389952770fec5f85e2e1369c005c Mon Sep 17 00:00:00 2001
From: ELF <360197197@qq.com>
Date: Tue, 19 Nov 2019 20:22:02 +0800
Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Home/Controller/QueryController.class.php | 25 +++++++++++++++++++
1 file changed, 25 insertions(+)
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;