From ae57bc67b7c1bd6f55c02578be2828ff2172d12c Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Mon, 19 Jan 2026 22:43:27 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AD=BE=E5=88=B0=E4=B8=B4=E6=97=B6=E6=94=B9?= =?UTF-8?q?=E4=B8=BA+6=E5=A4=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/red/circle/other/app/command/signin/SignCheckInExe.java | 2 +- .../circle/other/app/command/signin/SignInStatusQueryExe.java | 2 +- .../circle/other/app/command/signin/SupplementCheckInExe.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java index d674c893..0644bafe 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java @@ -59,7 +59,7 @@ public class SignCheckInExe { int targetDayIndex = saudiToday.getDayOfWeek().getValue(); - targetDayIndex = targetDayIndex +3; + targetDayIndex = targetDayIndex +6; ResponseAssert.isTrue(OtherErrorCode.SIGN_IN_CANNOT_ADVANCE, targetDayIndex >= 1); diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java index de825567..9a2066ce 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java @@ -35,7 +35,7 @@ public class SignInStatusQueryExe { LocalDate weekStartDate = saudiToday.with(DayOfWeek.MONDAY); int currentDayIndex = saudiToday.getDayOfWeek().getValue(); - currentDayIndex = currentDayIndex + 3; + currentDayIndex = currentDayIndex + 6; List configs = dailyConfigDAO.selectList( new LambdaQueryWrapper() diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java index 822d7f56..e66ad872 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java @@ -60,7 +60,7 @@ public class SupplementCheckInExe { LocalDate weekStartDate = saudiToday.with(DayOfWeek.MONDAY); int currentDayIndex = saudiToday.getDayOfWeek().getValue(); - currentDayIndex = currentDayIndex + 3; + currentDayIndex = currentDayIndex + 6; ResponseAssert.isTrue(OtherErrorCode.SIGN_IN_SUPPLEMENT_ONLY_PAST, targetDayIndex < currentDayIndex);