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 : 엔티티 세팅 #22

Merged
merged 21 commits into from
Jun 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
22a6041
feat : show, image 도메인 엔티티 추가
GaBaljaintheroom Jun 15, 2024
3766c80
refactor : show 엔티티 수정
GaBaljaintheroom Jun 15, 2024
6268274
feat : artist 도메인 엔티티 추가
GaBaljaintheroom Jun 15, 2024
451b57b
feat : SubscribeArtist 도메인 엔티티 추가
GaBaljaintheroom Jun 15, 2024
a4e235a
feat : Genre 도메인 엔티티 추가
GaBaljaintheroom Jun 15, 2024
5b8b500
feat : SubscribeGenre 도메인 엔티티 추가
GaBaljaintheroom Jun 15, 2024
d44cd99
feat : InterestShow 도메인 엔티티 추가
GaBaljaintheroom Jun 15, 2024
31232e8
feat : TicketingAlert 도메인 엔티티 추가
GaBaljaintheroom Jun 15, 2024
4cd88fc
refactor : User, Show 도메인으로 분리
GaBaljaintheroom Jun 18, 2024
1dc7d44
refactor : TicketingAlert 알림 예약 시간 필드명 수정
GaBaljaintheroom Jun 18, 2024
236cfe0
refactor : 좌석 별 가격 필드명 수정
GaBaljaintheroom Jun 18, 2024
4ae22f3
refactor : 검색용 테이블 name 필드명으로 수정
GaBaljaintheroom Jun 18, 2024
a15f35f
refactor : ShowGenre, ShowArtist 중간 테이블 생성
GaBaljaintheroom Jun 18, 2024
ebdf4e4
refactor : showImage 테이블 생성
GaBaljaintheroom Jun 18, 2024
8e0cf3a
refactor : show 모듈 도메인 패키지 분리
GaBaljaintheroom Jun 18, 2024
ac1ec4d
refactor : User 엔티티 필드 수정
GaBaljaintheroom Jun 18, 2024
cd535cd
refactor : 사용하지 않는 멤버변수 삭제
GaBaljaintheroom Jun 18, 2024
f059b15
refactor : Artist, Genre 의미 없는 관계 삭제
GaBaljaintheroom Jun 20, 2024
8b84aef
refactor : 알림 시간 필드명 수정
GaBaljaintheroom Jun 20, 2024
c78a7f6
refactor : Show image 타입 수정
GaBaljaintheroom Jun 20, 2024
8491094
refactor : Ticketing Map 키 타입 수정
GaBaljaintheroom Jun 20, 2024
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
Prev Previous commit
Next Next commit
refactor : show 엔티티 수정
  • Loading branch information
GaBaljaintheroom committed Jun 15, 2024
commit 3766c80ff77633d7f76f7f9fc9b16f6bbc0a8a6f
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.ManyToOne;
import jakarta.persistence.Table;
import java.util.UUID;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;
Expand All @@ -14,10 +16,11 @@
@Table(name = "app_show_search")
public class ShowSearch extends BaseEntity {

@Column(name = "name", nullable = false)
private String artistName;
@Column(name = "show_name", nullable = false)
private String showName;
devmizz marked this conversation as resolved.
Show resolved Hide resolved

@Column(name = "show_id", nullable = false)
private UUID showId;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "show_id")
private Show show;

}