Skip to content

Commit 15cec23

Browse files
authored
Merge pull request #199 from DevKor-github/fix/operating
Feat: 새로 추가된 운영 시간 없는 건물 반영
2 parents c902e1a + 1206329 commit 15cec23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/devkor/com/teamcback/domain/operatingtime/service/OperatingService.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public class OperatingService {
4141
private static final List<Long> alwaysOpenBuildings = List.of(0L, 23L, 27L, 60L);
4242

4343
// 출입 권한 필요 혹은 정보가 없는 건물
44-
private static final List<Long> alwaysAccessRequiredOrWithoutInfoBuildings = List.of(1L, 16L, 17L, 19L, 29L, 31L, 35L, 36L, 37L, 38L, 52L, 54L);
44+
private static final List<Long> alwaysAccessRequiredOrWithoutInfoBuildings = List.of(1L, 16L, 17L, 19L, 29L, 31L, 35L, 36L, 37L, 38L, 52L, 54L,
45+
62L, 63L, 64L, 65L, 66L, 67L, 68L, 69L, 70L, 71L, 72L);
4546
private static final String DEFAULT_OPERATING_TIME = "00:00-23:59";
4647

4748
/**

0 commit comments

Comments
 (0)