오늘은 추가로 다 구현하지 못한 기능들을 같이 완성했다. 프론트에서도 작업이 빨리 끝나서, 실질적으로 처음 잡은 기능들을 완성되었다. API 명세에는 없었지만, 주문 조회하기 기능도 만들어 놓으면 좋을 것 같아서 추가로 구현했다. responseDto를 새로 만들어서 기존의 Cart조회와 유사하게 리턴되게 하였다. @AllArgsConstructor @Getter public class OrderResponseDto { private Long orderId; private String createdAt; private List product; private Long totalPrice; private Long deliveryFee; private String state; } 처음에 구현한 뒤에 Produ..