nhnacademy-be7-55G-COM / 55G.COM-shop

0 stars 0 forks source link

Feat: 주문 조회 API #45

Closed FlowerfulFort closed 2 weeks ago

FlowerfulFort commented 2 weeks ago

26 주문 조회 API

// 주문 목록에 표기하기 위한 dto
// 알라딘 주문목록을 참고하였음.
public record OrderWithDetailResponseDto(
    long orderId,
    LocalDateTime orderedAt,
    long netPrice,
    long totalPrice,
    // 리스트에서 노출시킬 대표 디테일("'예시타이틀' 2권 외...")
    String representTitle,
    long totalKind,      // 종류(총 N종)
    int totalQuantity   // 양(총 N권)
) {}

테스트를 위해 일부 Entity가 구현됨