Skip to content

Commit 3ac4048

Browse files
committed
fix: 변수명 누락 수정
1 parent 7ffbddb commit 3ac4048

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/back/domain/study/plan/entity/RepeatRuleEmbeddable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class RepeatRuleEmbeddable {
2121
@Enumerated(EnumType.STRING)
2222
private Frequency frequency;
2323

24-
private Integer intervalValue;
24+
private Integer repeatInterval;
2525
private List<DayOfWeek> byDay = new ArrayList<>();
2626
private LocalDate untilDate; // LocalDateTime → LocalDate 변경
2727
}

src/main/java/com/back/domain/study/plan/entity/StudyPlanException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public enum ExceptionType {
6161
@Column(name = "modified_repeat_rule")
6262
@AttributeOverrides({
6363
@AttributeOverride(name = "frequency", column = @Column(name = "modified_frequency")),
64-
@AttributeOverride(name = "intervalValue", column = @Column(name = "modified_repeat_interval")),
64+
@AttributeOverride(name = "repeatInterval", column = @Column(name = "modified_interval_value")),
6565
@AttributeOverride(name = "byDay", column = @Column(name = "modified_by_day")),
6666
@AttributeOverride(name = "untilDate", column = @Column(name = "modified_until_date"))
6767
})

0 commit comments

Comments
 (0)