-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[FEAT] Album ๊ด๋ จ ๋ฆฌํํ ๋ง ๋ฐ ๋ฐ์ดํฐ ์ถ๊ฐ ๋ก์ง ๊ตฌํ
- Loading branch information
Showing
67 changed files
with
698 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
src/main/java/com/umc/networkingService/config/initial/AlbumInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package com.umc.networkingService.config.initial; | ||
|
||
import com.umc.networkingService.global.common.enums.Semester; | ||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public enum AlbumInfo { | ||
|
||
// 4๊ธฐ | ||
FOURTH_INHA_MT("222222", Semester.FOURTH, "์ธํ๋ํ๊ต 4๊ธฐ MT", "OB์ YB๊ฐ ํจ๊ปํ๋ ์ธํ๋ํ๊ต 4๊ธฐ MT๋ฅผ ์ฑ๊ณต์ ์ผ๋ก ๋ง๋ฌด๋ฆฌํ์ต๋๋ค.", | ||
List.of("https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/MT.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/MT+(2).jpg")), | ||
FOURTH_DEMO_DAY("222222", Semester.FOURTH, "UMC 4๊ธฐ ๋ฐ๋ชจ๋ฐ์ด ํ์ฌ", "UMC 4๊ธฐ ๋ฐ๋ชจ๋ฐ์ด ํ์ฌ 3์ผ๊ฐ ์ฑ๊ณต์ ์ผ๋ก ๋ง๋ฌด๋ฆฌํ์ต๋๋ค.", | ||
List.of("https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/%EB%8D%B0%EB%AA%A8%EB%8D%B0%EC%9D%B41.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/%EB%8D%B0%EB%AA%A8%EB%8D%B0%EC%9D%B42.jpg")), | ||
|
||
// 5๊ธฐ | ||
FIFTH_OT("333333", Semester.FIFTH, "UMC 5๊ธฐ OT", "UMC 5๊ธฐ ์ฐํฉ ๋ฐ ๊ต๋ด OT๋ฅผ ์งํํ์์ต๋๋ค.", | ||
List.of("https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/OT1.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/OT2.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/OT3.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/OT4.jpg")), | ||
FIFTH_NETWORKING("333333", Semester.FIFTH, "UMC 5๊ธฐ GACI ์ง๋ถ ๋คํธ์ํน ๋ฐ์ด", "UMC 5๊ธฐ GACI ์ง๋ถ ๋คํธ์ํน ๋ฐ์ด ํ์ฌ๋ฅผ ์งํํ์์ต๋๋ค.", | ||
List.of("https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/NETWORKING1.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/NETWORKING2.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/NETWORKING3.jpg")), | ||
FIFTH_INHA_MT("333333", Semester.FIFTH, "์ธํ๋ํ๊ต 5๊ธฐ MT", "OB์ YB๊ฐ ํจ๊ปํ๋ ์ธํ๋ํ๊ต 5๊ธฐ MT๋ฅผ ์งํํ์์ต๋๋ค.", | ||
List.of("https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/MT1.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/MT2.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/MT3.jpg")), | ||
FIFTH_GRDUATION("333333", Semester.FIFTH, "์ธํ๋ํ๊ต UMC ์กธ์ ์ ํ์ฌ", "์ธํ๋ํ๊ต UMC ์ฑ๋ฆฐ์ ์กธ์ ์๋ฅผ ์ถํํ๋ ํ์ฌ๋ฅผ ์งํํ์ต๋๋ค.", | ||
List.of("https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/G1.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/G2.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/G3.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/G4.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/G5.jpg")), | ||
FIFTH_DEMO_DAY("333333", Semester.FIFTH, "UMC 5๊ธฐ ๋ฐ๋ชจ๋ฐ์ด ํ์ฌ", "UMC 5๊ธฐ ๋ฐ๋ชจ๋ฐ์ด ํ์ฌ๋ฅผ 3์ผ๊ฐ ์ฑ๊ณต์ ์ผ๋ก ๋ง๋ฌด๋ฆฌํ๊ณ , UMC ๋คํธ์ํน ๋ฐ์ด ์๋น์ค ํ์ด 1๋ฑํ์ต๋๋ค!!~~", | ||
List.of("https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/DEMO.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/DEMO1.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/DEMO2.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/DEMO3.jpg", | ||
"https://umc-service-bucket.s3.ap-northeast-2.amazonaws.com/album/inha/DEMO4.jpg")), | ||
|
||
; | ||
|
||
private final String clientId; | ||
private final Semester semester; | ||
private final String title; | ||
private final String content; | ||
private final List<String> images; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
src/main/java/com/umc/networkingService/config/initial/MemberInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package com.umc.networkingService.config.initial; | ||
|
||
import com.umc.networkingService.domain.member.entity.SocialType; | ||
import com.umc.networkingService.global.common.enums.Part; | ||
import com.umc.networkingService.global.common.enums.Role; | ||
import com.umc.networkingService.global.common.enums.Semester; | ||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public enum MemberInfo { | ||
|
||
// 4๊ธฐ ํ์ฅ | ||
BORA("222222", "์ธํ๋ํ๊ต", "๋ณด๋ผ", "์ ์ง์", SocialType.KAKAO, Role.CAMPUS_STAFF, "ํ์ฅ", Semester.FOURTH, Part.SPRING), | ||
|
||
// 5๊ธฐ ํ์ฅ | ||
BEX("333333", "์ธํ๋ํ๊ต", "๋ฒก์ค", "๊น์ค์", SocialType.KAKAO, Role.CAMPUS_STAFF, "ํ์ฅ", Semester.FIFTH, Part.SPRING), | ||
; | ||
|
||
private final String clientId; | ||
private final String university; | ||
private final String nickname; | ||
private final String name; | ||
private final SocialType type; | ||
private final Role role; | ||
private final String position; | ||
private final Semester semester; | ||
private final Part part; | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.