From 9941512091806c58ee04e0e8d695768ad8453e9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=90=A6=E6=B6=9B?= Date: Thu, 29 Aug 2024 09:31:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E8=88=AC=E6=A3=80?= =?UTF-8?q?=E7=B4=A2=E5=85=A8=E6=96=87=E6=A3=80=E7=B4=A2=E5=8E=BB=E6=8E=89?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=AD=97=E5=85=B8=E7=BB=9F=E8=AE=A1=E4=B8=BA?= =?UTF-8?q?0=E7=9A=84=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../laws/home/service/impl/LawsHomeSearchServiceImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/laws-modules/src/main/java/com/jero/modules/laws/home/service/impl/LawsHomeSearchServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/home/service/impl/LawsHomeSearchServiceImpl.java index 4f161710..e1944a0f 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/home/service/impl/LawsHomeSearchServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/home/service/impl/LawsHomeSearchServiceImpl.java @@ -638,7 +638,9 @@ public class LawsHomeSearchServiceImpl implements ILawsHomeSearchService { }else{ objVO.setStatisticsCount("0"); } - listDict.add(objVO); + if(!Objects.equals(objVO.getStatisticsCount(),"0")){ + listDict.add(objVO); + } } return listDict; }