-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ee0fa2
commit 229e120
Showing
9 changed files
with
58 additions
and
91 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
13 changes: 0 additions & 13 deletions
13
web/src/main/java/org/cmc/curtaincall/web/show/response/BoxOfficeResponse.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,24 +1,11 @@ | ||
package org.cmc.curtaincall.web.show.response; | ||
|
||
import lombok.Builder; | ||
import org.cmc.curtaincall.domain.show.ShowGenre; | ||
import org.cmc.curtaincall.domain.show.ShowId; | ||
import org.cmc.curtaincall.domain.show.ShowTime; | ||
|
||
import java.time.LocalDate; | ||
import java.util.List; | ||
|
||
@Builder | ||
public record BoxOfficeResponse( | ||
ShowId id, // 공연 ID | ||
String name, // 공연명 | ||
LocalDate startDate, // 공연 시작일 | ||
LocalDate endDate, // 공연 종료일 | ||
String facilityName, // 공연 시설명(공연장명) | ||
String poster, // 공연 포스터 경로 | ||
ShowGenre genre, // 공연 장르명 | ||
List<ShowTime> showTimes, | ||
String runtime, | ||
int rank | ||
) { | ||
} |
6 changes: 6 additions & 0 deletions
6
web/src/main/java/org/cmc/curtaincall/web/show/response/ShowRank.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,6 @@ | ||
package org.cmc.curtaincall.web.show.response; | ||
|
||
public record ShowRank( | ||
int rank | ||
) { | ||
} |
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