Commit 6d522bc 1 parent 0d46fe8 commit 6d522bc Copy full SHA for 6d522bc
File tree 2 files changed +3
-3
lines changed
domain/jpa-calendar-domain/src/main/java/com/wypl/jpacalendardomain/calendar
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
package com .wypl .jpacalendardomain .calendar .data ;
2
2
3
- public enum INVITE_STATUS {
3
+ public enum InviteStatus {
4
4
PENDING ,
5
5
ACCENTED
6
6
}
Original file line number Diff line number Diff line change 1
1
package com .wypl .jpacalendardomain .calendar .domain ;
2
2
3
- import com .wypl .jpacalendardomain .calendar .data .INVITE_STATUS ;
3
+ import com .wypl .jpacalendardomain .calendar .data .InviteStatus ;
4
4
import com .wypl .jpamemberdomain .member .Member ;
5
5
import jakarta .persistence .*;
6
6
import lombok .*;
@@ -33,5 +33,5 @@ public class MemberCalendar {
33
33
34
34
@ Enumerated (EnumType .STRING )
35
35
@ Column (length = 10 , nullable = false )
36
- private INVITE_STATUS status ;
36
+ private InviteStatus status ;
37
37
}
You can’t perform that action at this time.
0 commit comments