Skip to content

Commit

Permalink
[feaure/#74] Add shippingCompany and trackingNumber fields to DTO
Browse files Browse the repository at this point in the history
  • Loading branch information
hershyYJ committed Nov 26, 2024
1 parent bb617bb commit 3821d37
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@Getter
@Setter
@Schema(description = "배송 중인 물품 조회에 대한 정보 DTO")
public class shippingDetailsDto {
public class ShippingDetailsDto {

@Schema(description = "배송 식별자 ID", example = "1")
private Long shippingId;
Expand All @@ -26,6 +26,12 @@ public class shippingDetailsDto {
@Schema(description = "배송 상태", example = "SHIPPING")
private ShippingStatus shippingStatus;

@Schema(description = "택배사", example = "우체국 택배")
private String shippingCompany;

@Schema(description = "송장 번호", example = "12356515")
private String trackingNumber;

@Schema(description = "최종 낙찰가", example = "50000")
private Long finalBidPrice;

Expand Down

0 comments on commit 3821d37

Please sign in to comment.