2021-zzimkkong icon indicating copy to clipboard operation
2021-zzimkkong copied to clipboard

[BE] Space reservations field 일급컬렉션으로 만든다

Open sakjung opened this issue 2 years ago • 0 comments

기능 상세

  • AS-IS: List<Reservaiton>
@OneToMany(mappedBy = "space", cascade = CascadeType.REMOVE, fetch = FetchType.LAZY, orphanRemoval = true)
@Builder.Default
private List<Reservation> reservations = new ArrayList<>();
  • TO-BE: Reservations 일급컬렉션
# 참고!!
@Embedded
@Builder.Default
private Settings spaceSettings = new Settings();

sakjung avatar Aug 12 '22 06:08 sakjung