Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 장소 검수 기능 뼈대코드 설계 및 구현 #373

Merged
merged 3 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
package com.now.naaga.temporaryplace.domain;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P5:

생명주기가 완전히 달라서 다른 패키지를 둔 것에 매우 동의합니다.

Place와 TemporaryPlace는 도메인 제약조건이 매우 깊은 연관 관계를 갖고 있는 것 같긴하지만, 앞으로 구현해나가면서 판단하면 될 것 같습니다.


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() +
'}';
}
}
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 {
}
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> {
}
Loading