Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Bakery 엔티티에 instagram url 필드 추가해라 #137

Merged
merged 7 commits into from
Aug 13, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public class BakeryDetailResponseDTO extends BaseBakeryResponseDTO {
private Long reviewCount;
private BreadTypeResponseDTO breadType;
private String mapUrl;
private String homepage;
private String homepageUrl;
private String instagramUrl;
private String address;
private String openingTime;
private String closedDay;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ public BakeryDetailResponseDTO getBakeryDetail(Long memberId, Long bakeryId) {
.bookMarkCount(bakery.getBookMarkCount())
.reviewCount(bakery.getReviewCount())
.mapUrl(bakery.getMapUrl())
.homepage(bakery.getHomepage())
.homepageUrl(bakery.getHomepageUrl())
.instagramUrl(bakery.getInstagramUrl())
.address(
bakery.getState()
+ " "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public class Bakery {

@NotNull private String mapUrl;

private String homepage;
private String homepageUrl;

private String instagramUrl;

private String firstNearStation;

Expand Down
Loading