-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π :: Api-v0.0.3-1
- Loading branch information
Showing
19 changed files
with
193 additions
and
73 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
19 changes: 19 additions & 0 deletions
19
...main/java/band/gosrock/domain/domains/issuedTicket/dto/request/CreateIssuedTicketDTO.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,19 @@ | ||
package band.gosrock.domain.domains.issuedTicket.dto.request; | ||
|
||
|
||
import band.gosrock.domain.domains.order.domain.Order; | ||
import band.gosrock.domain.domains.order.domain.OrderLineItem; | ||
import band.gosrock.domain.domains.user.domain.User; | ||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public class CreateIssuedTicketDTO { | ||
|
||
private final Order order; | ||
|
||
private final OrderLineItem orderLineItem; | ||
|
||
private final User user; | ||
} |
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
11 changes: 9 additions & 2 deletions
11
...ava/band/gosrock/domain/domains/issuedTicket/dto/response/CreateIssuedTicketResponse.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 |
---|---|---|
@@ -1,15 +1,22 @@ | ||
package band.gosrock.domain.domains.issuedTicket.dto.response; | ||
|
||
|
||
import band.gosrock.domain.domains.issuedTicket.domain.IssuedTicket; | ||
import band.gosrock.domain.domains.issuedTicket.domain.IssuedTicketOptionAnswer; | ||
import java.util.List; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class CreateIssuedTicketResponse { | ||
|
||
private final List<IssuedTicketDTO> issuedTickets; | ||
private final List<IssuedTicket> issuedTickets; | ||
|
||
public CreateIssuedTicketResponse(List<IssuedTicketDTO> issuedTickets) { | ||
private final List<IssuedTicketOptionAnswer> issuedTicketOptionAnswers; | ||
|
||
public CreateIssuedTicketResponse( | ||
List<IssuedTicket> issuedTickets, | ||
List<IssuedTicketOptionAnswer> issuedTicketOptionAnswers) { | ||
this.issuedTickets = issuedTickets; | ||
this.issuedTicketOptionAnswers = issuedTicketOptionAnswers; | ||
} | ||
} |
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
Oops, something went wrong.