-
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
eb21e5e
commit 443599a
Showing
21 changed files
with
460 additions
and
81 deletions.
There are no files selected for viewing
Submodule Odiga-Submodule
updated
from 6bfd9f to 8e9c3c
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
27 changes: 27 additions & 0 deletions
27
src/main/java/com/odiga/fiesta/festival/dto/response/FestivalBasic.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,27 @@ | ||
package com.odiga.fiesta.festival.dto.response; | ||
|
||
import com.odiga.fiesta.festival.domain.Festival; | ||
|
||
import lombok.Getter; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@ToString | ||
public class FestivalBasic { | ||
|
||
private Long festivalId; | ||
private String name; | ||
|
||
public FestivalBasic(Long festivalId, String name) { | ||
this.festivalId = festivalId; | ||
this.name = name; | ||
} | ||
|
||
public static FestivalBasic of(Long festivalId, String name) { | ||
return new FestivalBasic(festivalId, name); | ||
} | ||
|
||
public static FestivalBasic of(Festival festival) { | ||
return new FestivalBasic(festival.getId(), festival.getName()); | ||
} | ||
} |
27 changes: 0 additions & 27 deletions
27
src/main/java/com/odiga/fiesta/festival/dto/response/FestivalBasicResponse.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.