Revert "签到临时改为+6天"

This reverts commit ae57bc67b7c1bd6f55c02578be2828ff2172d12c.
This commit is contained in:
tianfeng 2026-01-20 16:43:24 +08:00
parent e17525798f
commit f7b95dee50
3 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ public class SignCheckInExe {
int targetDayIndex = saudiToday.getDayOfWeek().getValue();
targetDayIndex = targetDayIndex +6;
targetDayIndex = targetDayIndex +3;
ResponseAssert.isTrue(OtherErrorCode.SIGN_IN_CANNOT_ADVANCE,
targetDayIndex >= 1);

View File

@ -35,7 +35,7 @@ public class SignInStatusQueryExe {
LocalDate weekStartDate = saudiToday.with(DayOfWeek.MONDAY);
int currentDayIndex = saudiToday.getDayOfWeek().getValue();
currentDayIndex = currentDayIndex + 6;
currentDayIndex = currentDayIndex + 3;
List<SignInDailyConfig> configs = dailyConfigDAO.selectList(
new LambdaQueryWrapper<SignInDailyConfig>()

View File

@ -60,7 +60,7 @@ public class SupplementCheckInExe {
LocalDate weekStartDate = saudiToday.with(DayOfWeek.MONDAY);
int currentDayIndex = saudiToday.getDayOfWeek().getValue();
currentDayIndex = currentDayIndex + 6;
currentDayIndex = currentDayIndex + 3;
ResponseAssert.isTrue(OtherErrorCode.SIGN_IN_SUPPLEMENT_ONLY_PAST,
targetDayIndex < currentDayIndex);