Revert "签到接口 临时处理为+3天"

This reverts commit 6a2af57fd3c4a8d9b10b21d81ad84bd814a004a8.
This commit is contained in:
tianfeng 2026-01-20 16:43:34 +08:00
parent f7b95dee50
commit d163eb8f72
3 changed files with 0 additions and 6 deletions

View File

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

View File

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

View File

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