From 8ef88e78ce369340ae53faba7ae92e0c49862c75 Mon Sep 17 00:00:00 2001 From: wenhui <1455474577@qq.com> Date: Tue, 15 Mar 2022 17:58:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=95=B0=E6=8D=AE=E5=A4=A7?= =?UTF-8?q?=E5=B1=8F=E8=AE=A2=E5=8D=95=E6=9D=A5=E6=BA=90=E6=AF=94=E4=BE=8B?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3Bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/XhpcDataBigScreenServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xhpc-modules/xhpc-data-big-screen/src/main/java/com/xhpc/databigscreen/service/impl/XhpcDataBigScreenServiceImpl.java b/xhpc-modules/xhpc-data-big-screen/src/main/java/com/xhpc/databigscreen/service/impl/XhpcDataBigScreenServiceImpl.java index 68eba8b0..a0c81c21 100644 --- a/xhpc-modules/xhpc-data-big-screen/src/main/java/com/xhpc/databigscreen/service/impl/XhpcDataBigScreenServiceImpl.java +++ b/xhpc-modules/xhpc-data-big-screen/src/main/java/com/xhpc/databigscreen/service/impl/XhpcDataBigScreenServiceImpl.java @@ -408,7 +408,7 @@ public class XhpcDataBigScreenServiceImpl implements XhpcDataBigScreenService { */ private OrderRatio getOrderRatio(List tenantIdList, List chargingStationIdList) { - Long totalCount = xhpcHistoryOrderMapper.selectCountByTenantIdsAndChargingStationIds(tenantIdList, null); + Long totalCount = xhpcHistoryOrderMapper.selectCountByTenantIdsAndChargingStationIds(tenantIdList, chargingStationIdList); OrderRatio orderRatio = new OrderRatio(); orderRatio.setTotalCount(totalCount); Long stClientNumber = xhpcHistoryOrderMapper.selectOrderCountBy(tenantIdList, chargingStationIdList, UserTypeUtil.COMMUNIT_TYPE, null);