From ce4a770744d7a0b4e4ea3b5101556b94e72bdf1c Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期二, 14 十一月 2023 17:49:20 +0800 Subject: [PATCH] 修改打卡 --- springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java index 21c87c0..b3cf77c 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/java/com/panzhihua/service_dangjian/service/impl/ComPbCheckUnitServiceImpl.java @@ -266,7 +266,7 @@ * @return */ @Override - public R unitStatisticsTop(Long communityId, String belongTo, String choice) { + public R unitStatisticsTop(Long communityId, String belongTo, String choice,Long[] unitIds) { List<Long> communityIds = new ArrayList<>(); if (null != communityId){ communityIds = comPbMemberDAO.selectIds(communityId); @@ -275,7 +275,7 @@ } } - return R.ok(this.baseMapper.unitStatisticsTop(communityIds, belongTo, choice)); + return R.ok(this.baseMapper.unitStatisticsTop(communityIds, belongTo, choice,unitIds)); } /** @@ -306,7 +306,7 @@ * @return */ @Override - public R pbStatisticsTop(Long communityId, String belongTo, String choice, Long checkUnitId) { + public R pbStatisticsTop(Long communityId, String belongTo, String choice, Long checkUnitId,Long[] unitIds) { List<Long> communityIds = new ArrayList<>(); if (null != communityId){ @@ -315,7 +315,7 @@ communityIds.add(communityId); } } - return R.ok(this.baseMapper.pbStatisticsTop(communityIds, belongTo, choice, checkUnitId)); + return R.ok(this.baseMapper.pbStatisticsTop(communityIds, belongTo, choice, checkUnitId,unitIds)); } /** -- Gitblit v1.7.1