We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f88c066 commit b4fa80cCopy full SHA for b4fa80c
src/main/java/dmu/dasom/api/domain/executive/enums/Role.java
@@ -0,0 +1,24 @@
1
+package dmu.dasom.api.domain.executive.enums;
2
+
3
+import lombok.AllArgsConstructor;
4
+import lombok.Getter;
5
6
+// enum + 문자열 매핑
7
+@AllArgsConstructor
8
+@Getter
9
+public enum Role {
10
11
+ ROLE_PRESIDENT("PRESIDENT"), // 회장
12
+ ROLE_VICE_PRESIDENT("VICE_PRESIDENT"), // 부회장
13
+ ROLE_TECHNICAL_MANAGER("TECHNICAL_MANAGER"), // 기술팀장
14
+ ROLE_ACADEMIC_MANAGER("ACADEMIC_MANAGER"), // 학술팀장
15
+ ROLE_ACADEMIC_SENIOR("ACADEMIC_SENIOR"), // 학술차장
16
+ ROLE_PUBLIC_RELATIONS_MANAGER("PUBLIC_RELATIONS_MANAGER"), // 홍보팀장
17
+ ROLE_CLERK("CLERK"), // 서기
18
+ ROLE_MANAGER("MANAGER"), // 총무
19
+ ROLE_SUB_MANAGER("SUB_MANAGER"), // 부총무
20
+ ;
21
22
+ private String name;
23
24
+}
0 commit comments