-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathApplication.java
More file actions
139 lines (120 loc) · 4.67 KB
/
Application.java
File metadata and controls
139 lines (120 loc) · 4.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package com.example.solidconnection.application.domain;
import static com.example.solidconnection.common.VerifyStatus.PENDING;
import com.example.solidconnection.common.BaseEntity;
import com.example.solidconnection.common.VerifyStatus;
import com.example.solidconnection.siteuser.domain.SiteUser;
import jakarta.persistence.Column;
import jakarta.persistence.Embedded;
import jakarta.persistence.Entity;
import jakarta.persistence.EnumType;
import jakarta.persistence.Enumerated;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Index;
import jakarta.persistence.Table;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
@Getter
@NoArgsConstructor(access = lombok.AccessLevel.PROTECTED)
@DynamicUpdate
@DynamicInsert
@Entity
@Table(indexes = {
@Index(name = "idx_app_user_term_delete",
columnList = "site_user_id, term_id, is_delete"),
@Index(name = "idx_app_first_choice_search",
columnList = "verify_status, term_id, is_delete, first_choice_university_info_for_apply_id"),
@Index(name = "idx_app_second_choice_search",
columnList = "verify_status, term_id, is_delete, second_choice_university_info_for_apply_id"),
@Index(name = "idx_app_third_choice_search",
columnList = "verify_status, term_id, is_delete, third_choice_university_info_for_apply_id")
})
public class Application extends BaseEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Embedded
private Gpa gpa;
@Embedded
private LanguageTest languageTest;
@Setter
@Column(name = "verify_status", nullable = false)
@Enumerated(EnumType.STRING)
private VerifyStatus verifyStatus = VerifyStatus.PENDING;
@Column(length = 100, name = "nickname_for_apply")
private String nicknameForApply;
@Column(columnDefinition = "int not null default 1", name = "update_count")
private Integer updateCount;
@Column(nullable = false, name = "term_id")
private long termId;
@Column(name = "is_delete")
private boolean isDelete = false;
@Column(nullable = false, name = "first_choice_university_info_for_apply_id")
private long firstChoiceUnivApplyInfoId;
@Column(name = "second_choice_university_info_for_apply_id")
private Long secondChoiceUnivApplyInfoId;
@Column(name = "third_choice_university_info_for_apply_id")
private Long thirdChoiceUnivApplyInfoId;
@Column(name = "site_user_id")
private long siteUserId;
public Application(
SiteUser siteUser,
Gpa gpa,
LanguageTest languageTest,
long termId) {
this.siteUserId = siteUser.getId();
this.gpa = gpa;
this.languageTest = languageTest;
this.termId = termId;
this.updateCount = 1;
this.verifyStatus = PENDING;
}
public Application(
SiteUser siteUser,
Gpa gpa,
LanguageTest languageTest,
long termId,
Integer updateCount,
long firstChoiceUnivApplyInfoId,
Long secondChoiceUnivApplyInfoId,
Long thirdChoiceUnivApplyInfoId,
String nicknameForApply) {
this.siteUserId = siteUser.getId();
this.gpa = gpa;
this.languageTest = languageTest;
this.termId = termId;
this.updateCount = updateCount;
this.firstChoiceUnivApplyInfoId = firstChoiceUnivApplyInfoId;
this.secondChoiceUnivApplyInfoId = secondChoiceUnivApplyInfoId;
this.thirdChoiceUnivApplyInfoId = thirdChoiceUnivApplyInfoId;
this.nicknameForApply = nicknameForApply;
this.verifyStatus = PENDING;
}
public Application(
SiteUser siteUser,
Gpa gpa,
LanguageTest languageTest,
long termId,
long firstChoiceUnivApplyInfoId,
Long secondChoiceUnivApplyInfoId,
Long thirdChoiceUnivApplyInfoId,
String nicknameForApply) {
this.siteUserId = siteUser.getId();
this.gpa = gpa;
this.languageTest = languageTest;
this.termId = termId;
this.updateCount = 1;
this.firstChoiceUnivApplyInfoId = firstChoiceUnivApplyInfoId;
this.secondChoiceUnivApplyInfoId = secondChoiceUnivApplyInfoId;
this.thirdChoiceUnivApplyInfoId = thirdChoiceUnivApplyInfoId;
this.nicknameForApply = nicknameForApply;
this.verifyStatus = PENDING;
}
public void setIsDeleteTrue() {
this.isDelete = true;
}
}