@ -218,6 +218,6 @@ public class Constants {
public static ConcurrentHashMap<Integer, Integer> scheduleRequestMap = new ConcurrentHashMap<>();
public static HashMap<Integer, String> scheduleRequestDoneMap = new HashMap<>();
public static final Integer Photo_Schedule_Delay = 5;
public static final Integer Photo_Schedule_Delay = 3;
}
@ -39,18 +39,13 @@ public class ScheduleDetailsDto implements Serializable {
public boolean match(int min, int delay) {
int cal = this.calMinute();
if (cal == min) {
return true;
} else if (cal > min) {
return false;
} else {
if (cal + delay >= min) {
int r = Math.abs(min - cal);
if (r <= delay) {
public boolean isWrong() {
if (timeList.size() == 1) {