From 87ce1c3a6c13285d3ead7656679bc897454b57cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=95=B8=E9=9D=9E?= <8153694@qq.com> Date: Thu, 18 Jul 2024 14:55:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A6=96=E9=A1=B5=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E6=A8=A1=E5=9D=97=20=E7=BB=9F=E8=AE=A1=E8=BF=91?= =?UTF-8?q?=E4=B8=80=E5=91=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mortals/xhx/base/login/web/LoginController.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bill-manager/src/main/java/com/mortals/xhx/base/login/web/LoginController.java b/bill-manager/src/main/java/com/mortals/xhx/base/login/web/LoginController.java index a5b85a7..7126794 100644 --- a/bill-manager/src/main/java/com/mortals/xhx/base/login/web/LoginController.java +++ b/bill-manager/src/main/java/com/mortals/xhx/base/login/web/LoginController.java @@ -211,6 +211,10 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi PhQueueStatQuery statThirtyQuery = new PhQueueStatQuery(); statThirtyQuery.setTimeStart(DateUtil.offsetDay(new Date(), -30).toDateStr()); statThirtyQuery.setTimeEnd(DateUtil.today()); + statThirtyQuery.setHallName(""); + statThirtyQuery.setWindowFromnum(""); + statThirtyQuery.setSectionName(""); + statThirtyQuery.setBusiness(""); statThirtyQuery.setGroupList(Arrays.asList("year", "month", "day")); List<PhQueueStatEntity> thirtyStatList = phQueueStatService.find(statThirtyQuery, pageInfo, getContext()).getList(); if (!ObjectUtils.isEmpty(thirtyStatList)) { @@ -228,6 +232,12 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi statThirtyQuery.setTimeStart(DateUtil.offsetDay(new Date(), -30).toDateStr()); statThirtyQuery.setTimeEnd(DateUtil.today()); log.info(statThirtyQuery.getTimeStart()+"---"+statThirtyQuery.getTimeEnd()); + + statThirtyQuery.setHallName(""); + statThirtyQuery.setWindowFromnum(""); + statThirtyQuery.setSectionName(""); + statThirtyQuery.setPjOption(""); + statThirtyQuery.setGroupList(Arrays.asList("year", "month", "day")); List<PjEvaluateStatEntity> thirtyStatList = pjEvaluateStatService.find(statThirtyQuery, pageInfo, getContext()).getList(); if (!ObjectUtils.isEmpty(thirtyStatList)) { -- 2.24.3