Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public static ProductSearchResponseDto.ProductPrevDto toProductPrevDto(Product p
public static ProductRegisterHistoryDto toProductRegisterHistoryDto(Product product){
return ProductRegisterHistoryDto.builder()
.productId(product.getProductId())
.name(product.getProductName())
.registerDate(product.getCreatedAt())
.productImage(product.getProductImage())
.decodeStatus(product.getDecodeStatus())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public class ProductRegisterHistoryDto {
@Schema(description = "상품 ID", example = "1")
private Long productId;

@Schema(description = "상품명", example = "곰곰육개장")
private String name;

@Schema(description = "상품 등록일", example = "2025-09-05")
@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDateTime registerDate;
Expand Down
Loading