We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9788ff commit e306916Copy full SHA for e306916
src/main/java/com/back/domain/study/plan/dto/StudyPlanResponse.java
@@ -43,8 +43,7 @@ public class StudyPlanResponse {
43
public static class RepeatRuleResponse {
44
private Frequency frequency;
45
private Integer repeatInterval;
46
- // byDay 필드는 이미 List<String>으로 선언되어 있음.
47
- private List<DayOfWeek> byDay = new ArrayList<>(); // "MON" 형태의 문자열 리스트
+ private List<DayOfWeek> byDay = new ArrayList<>(); // "MON" 형태의 enum 문자열 리스트
48
49
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
50
private LocalDate untilDate;
0 commit comments