From 9d2fcd9f202621ac838a69db8bb8beb300ae9431 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 15:11:17 +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 --- .../xhx/base/login/web/LoginController.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 7126794..7e2d3e6 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,10 +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.setHallNameList(Arrays.asList("")); + statThirtyQuery.setWindowFromnumList(Arrays.asList("")); + statThirtyQuery.setSectionNameList(Arrays.asList("")); + statThirtyQuery.setBusinessList(Arrays.asList("")); statThirtyQuery.setGroupList(Arrays.asList("year", "month", "day")); List<PhQueueStatEntity> thirtyStatList = phQueueStatService.find(statThirtyQuery, pageInfo, getContext()).getList(); if (!ObjectUtils.isEmpty(thirtyStatList)) { @@ -233,10 +233,10 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi statThirtyQuery.setTimeEnd(DateUtil.today()); log.info(statThirtyQuery.getTimeStart()+"---"+statThirtyQuery.getTimeEnd()); - statThirtyQuery.setHallName(""); - statThirtyQuery.setWindowFromnum(""); - statThirtyQuery.setSectionName(""); - statThirtyQuery.setPjOption(""); + statThirtyQuery.setHallNameList(Arrays.asList("")); + statThirtyQuery.setWindowFromnumList(Arrays.asList("")); + statThirtyQuery.setSectionNameList(Arrays.asList("")); + statThirtyQuery.setPjOptionList(Arrays.asList("")); statThirtyQuery.setGroupList(Arrays.asList("year", "month", "day")); List<PjEvaluateStatEntity> thirtyStatList = pjEvaluateStatService.find(statThirtyQuery, pageInfo, getContext()).getList(); -- 2.24.3