Skip to content

Commit

Permalink
StudentWeekNumber = 6
Browse files Browse the repository at this point in the history
  • Loading branch information
dh28be committed Jun 27, 2024
1 parent 9ce31d4 commit 657b2c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/pro/hexa/unist/meal/Utils/ExcelUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static List<List<String>> parse(Sheet worksheet) throws UnsupportedEncodi
} else if (parseRestaurantType(worksheet).equals("학생 식당")) {
startRowNum = StudentStartRow; // 학생 식당 => day 5개
colList = new ArrayList<>(Arrays.asList(DayType.MON.getColNum(), DayType.TUE.getColNum(), DayType.WED.getColNum()
, DayType.THU.getColNum(), DayType.FRI.getColNum()));
, DayType.THU.getColNum(), DayType.FRI.getColNum(), DayType.SAT.getColNum()));
weekNumber = StudentWeekNumber;
} else {
// 기숙사 식당
Expand Down

0 comments on commit 657b2c0

Please sign in to comment.