Skip to content

Commit

Permalink
edit : 상품 검색 dto 필드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bongsh0112 committed Dec 6, 2023
1 parent 3fd49a0 commit 9ef114a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ProductRetrieveDTO {
private String characteristic;
private Long price;
private String productOption;
private String imageUrl;
private String crawlUrl;
private String siteUrl;

public static ProductRetrieveDTO from(Product product) {
Expand All @@ -28,7 +28,7 @@ public static ProductRetrieveDTO from(Product product) {
.characteristic(product.getCharacteristic())
.price(product.getPrice())
.productOption(product.getProductOption())
.imageUrl(product.getImageUrl())
.crawlUrl(product.getCrawlUrl())
.siteUrl(product.getCrawlUrl())
.build();
}
Expand Down

0 comments on commit 9ef114a

Please sign in to comment.