-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 검수가 필요한 장소 엔티티 구현 * feat: 장소 검수 컨트롤러 구현 * feat: 장소 검수 Repository 구현 --------- Co-authored-by: kokodak <[email protected]>
- Loading branch information
Showing
3 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
112 changes: 112 additions & 0 deletions
112
backend/src/main/java/com/now/naaga/temporaryplace/domain/TemporaryPlace.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,112 @@ | ||
package com.now.naaga.temporaryplace.domain; | ||
|
||
import com.now.naaga.common.domain.BaseEntity; | ||
import com.now.naaga.place.domain.Position; | ||
import com.now.naaga.player.domain.Player; | ||
import jakarta.persistence.Embedded; | ||
import jakarta.persistence.Entity; | ||
import jakarta.persistence.GeneratedValue; | ||
import jakarta.persistence.GenerationType; | ||
import jakarta.persistence.Id; | ||
import jakarta.persistence.JoinColumn; | ||
import jakarta.persistence.ManyToOne; | ||
import java.util.Objects; | ||
|
||
@Entity | ||
public class TemporaryPlace extends BaseEntity { | ||
|
||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
@Id | ||
private Long id; | ||
|
||
private String name; | ||
|
||
private String description; | ||
|
||
@Embedded | ||
private Position position; | ||
|
||
private String imageUrl; | ||
|
||
@ManyToOne | ||
@JoinColumn(name = "player_id") | ||
private Player registeredPlayer; | ||
|
||
protected TemporaryPlace() { | ||
} | ||
|
||
public TemporaryPlace(final String name, | ||
final String description, | ||
final Position position, | ||
final String imageUrl, | ||
final Player registeredPlayer) { | ||
this(null, name, description, position, imageUrl, registeredPlayer); | ||
} | ||
|
||
public TemporaryPlace(final Long id, | ||
final String name, | ||
final String description, | ||
final Position position, | ||
final String imageUrl, | ||
final Player registeredPlayer) { | ||
this.id = id; | ||
this.name = name; | ||
this.description = description; | ||
this.position = position; | ||
this.imageUrl = imageUrl; | ||
this.registeredPlayer = registeredPlayer; | ||
} | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public String getDescription() { | ||
return description; | ||
} | ||
|
||
public Position getPosition() { | ||
return position; | ||
} | ||
|
||
public String getImageUrl() { | ||
return imageUrl; | ||
} | ||
|
||
public Player getRegisteredPlayer() { | ||
return registeredPlayer; | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
final TemporaryPlace that = (TemporaryPlace) o; | ||
return Objects.equals(id, that.id); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(id); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "TemporaryPlace{" + | ||
"id=" + id + | ||
", name='" + name + '\'' + | ||
", description='" + description + '\'' + | ||
", position=" + position + | ||
", imageUrl='" + imageUrl + '\'' + | ||
", registeredPlayerId=" + registeredPlayer.getId() + | ||
'}'; | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
...end/src/main/java/com/now/naaga/temporaryplace/presentation/TemporaryPlaceController.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,9 @@ | ||
package com.now.naaga.temporaryplace.presentation; | ||
|
||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
@RequestMapping("/temporary-places") | ||
@RestController | ||
public class TemporaryPlaceController { | ||
} |
8 changes: 8 additions & 0 deletions
8
backend/src/main/java/com/now/naaga/temporaryplace/repository/TemporaryPlaceRepository.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,8 @@ | ||
package com.now.naaga.temporaryplace.repository; | ||
|
||
|
||
import com.now.naaga.temporaryplace.domain.TemporaryPlace; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
|
||
public interface TemporaryPlaceRepository extends JpaRepository<TemporaryPlace, Long> { | ||
} |