diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/task/CheckInExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/task/CheckInExe.java index 5ab3ab89..c601e493 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/task/CheckInExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/task/CheckInExe.java @@ -143,6 +143,10 @@ public class CheckInExe { * @return 过期时间(毫秒) */ private long getExpiredTime(boolean isAziziCheckIn, Long userId) { + if (isAziziCheckIn) { + return -1L; + } + Duration duration = getDuration(); long expiredTime = duration.plusDays(1).toMillis();