From faefe72fc9e3c85c25b9e62482e4f63fe83b70d3 Mon Sep 17 00:00:00 2001 From: huyuchen <chainahyc2021@126.com> Date: Fri, 15 Dec 2023 11:14:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B9=B4=E7=BB=88=E5=A5=96=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java b/yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java index 4fb1422c4..fd0324be6 100644 --- a/yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java +++ b/yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java @@ -3198,7 +3198,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa List<TPaymentInfo> sumList = baseMapper.selectList(Wrappers.<TPaymentInfo>query().lambda() .eq(TPaymentInfo::getEmpIdcard, info.getEmpIdcard()) .eq(TPaymentInfo::getSettleDomainId, info.getSettleDomainId()) - .eq(TPaymentInfo::getSocialCreateMonth, "202212")); + .eq(TPaymentInfo::getSocialCreateMonth, DateUtil.getYearAndMonth(LocalDateTime.now(),0))); TPaymentVo paymentVo = new TPaymentVo(); paymentVo.setPaymentInfoList(sumList); return paymentVo; -- 2.18.1