Skip to content

Commit

Permalink
πŸ”₯ remove: λΆˆν•„μš” μ½”λ“œ μ‚­μ œ
Browse files Browse the repository at this point in the history
  • Loading branch information
youngreal committed Aug 26, 2024
1 parent 97578d8 commit 74d9608
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;

@EnableJpaAuditing
@EnableFeignClients
@SpringBootApplication
public class DndTravelProjectApplication {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public class MemberAttraction {
private LocalDate localDate; // λ°©λ¬Έ λ‚ μ§œ
private String region; // 지역
private int photosCount; // 사진 개수, ν•„μš”ν•œκ°€?
//todo λͺ…μ†Œ 이름도 ν•„μš”ν• μ§€λ„?

@Builder
private MemberAttraction(Member member, Attraction attraction, String memo, LocalDate localDate, String region,
Expand All @@ -59,11 +60,4 @@ public static MemberAttraction of(Member member, Attraction attraction, String m
.region(region)
.build();
}

public void update(String region, String attraction, String memo, LocalDate localDate) {
this.region = region;
// this.attraction = attraction;
this.memo = memo;
this.localDate = localDate;
}
}

0 comments on commit 74d9608

Please sign in to comment.