-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: #111
GuestOrderPreparationResponse
- 비회원 임시 주문 생성에 대한 응답 객체
- Loading branch information
1 parent
8a070eb
commit 6020af1
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
src/main/java/com/t3t/frontserver/order/model/response/GuestOrderPreparationResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package com.t3t.frontserver.order.model.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.math.BigDecimal; | ||
|
||
/** | ||
* 비회원 임시 주문 생성에 대한 응답 객체 | ||
* | ||
* @author woody35545(구건모) | ||
*/ | ||
|
||
@Data | ||
@Builder | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class GuestOrderPreparationResponse { | ||
|
||
/** | ||
* 생성된 주문 정보 | ||
*/ | ||
private String guestOrderId; // 비회원에게 제공하는 주문 식별자 | ||
private Long orderId; // 주문 식별자 | ||
|
||
/** | ||
* 결제 관련 정보 | ||
*/ | ||
private String providerOrderId; // 결제 제공자측에서 사용할 주문 식별자 | ||
private BigDecimal totalPrice; // 총 결제해야 할 금액 | ||
|
||
/** | ||
* 배송 정보 | ||
*/ | ||
private Long deliveryId; // 배송 정보 식별자 | ||
} |