-
Notifications
You must be signed in to change notification settings - Fork 1
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
Calendar Domain 작성 #12
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
몇가지 논의 사항이 있어서 답글 부탁 드립니다!
...n/jpa-calendar-domain/src/main/java/com/wypl/jpacalendardomain/calendar/domain/Calendar.java
Show resolved
Hide resolved
...n/jpa-calendar-domain/src/main/java/com/wypl/jpacalendardomain/calendar/domain/Calendar.java
Outdated
Show resolved
Hide resolved
...calendar-domain/src/main/java/com/wypl/jpacalendardomain/calendar/domain/MemberCalendar.java
Show resolved
Hide resolved
...a-calendar-domain/src/main/java/com/wypl/jpacalendardomain/schedule/domain/ScheduleInfo.java
Show resolved
Hide resolved
...n/jpa-calendar-domain/src/main/java/com/wypl/jpacalendardomain/schedule/domain/Schedule.java
Show resolved
Hide resolved
...jpa-calendar-domain/src/main/java/com/wypl/jpacalendardomain/schedule/domain/Repetition.java
Outdated
Show resolved
Hide resolved
...lendar-domain/src/main/java/com/wypl/jpacalendardomain/calendar/domain/MemberCalendarId.java
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
전체적으로 좋습니다!
회의를 진행하면서 정해야할 것이 있을 것 같은데, 컬럼명을 명시적으로 다 적어주는게 좋을지 궁금하여 이것은 내일 진행해보도록 하겠습니다!
|
||
@Column(length = 6, nullable = false) | ||
@ColumnDefault("Orange") | ||
private String color; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
추후에는 이넘 타입으로 관리하고 있는 색상이 있어서 그거로 대체하면 좋을 것 같아요!
...n/jpa-calendar-domain/src/main/java/com/wypl/jpacalendardomain/calendar/domain/Calendar.java
Show resolved
Hide resolved
📄 Image Server Jacoco Coverage Report
|
📄 Image Server Jacoco Coverage Report
|
📄 Image Server Jacoco Coverage Report
|
|
||
@Column(name = "creator_id") | ||
private Long creatorId; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
논의를 해봐야할 것 같지만, 그룹에 있는 모든 인원들이 수정을 해야한다고 생각하지만 이 상황이라면 마지막에 수정한 사람이 누구인지 모를 것 같습니다!...
추후 논의 할 수 있도록 다른 곳에 올려둘게요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
📑 개요
✅ PR 체크리스트
🚀 상세 작업 내용
모든 Entity의
extends BaseEntity
부분은 Todo 로 작성했습니다.- 복합키를 위한 MemberCalendarId 작성
- InviteStatus enum 작성
- RepetitionCycle enum 작성
📁 ETC