-
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.
Merge pull request #190 from Kek-i/develop
[Update] 1차 및 2차 최종 업데이트
- Loading branch information
Showing
74 changed files
with
912 additions
and
527 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
application-oauth.properties | ||
application-redis.properties | ||
HELP.md | ||
.gradle | ||
build/ | ||
|
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
30 changes: 30 additions & 0 deletions
30
src/main/java/com/codepatissier/keki/calendar/DateCountCategory.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,30 @@ | ||
package com.codepatissier.keki.calendar; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public enum DateCountCategory { | ||
ONE_HUNDRED(100, "100일"), | ||
TWO_HUNDRED(200, "200일"), | ||
THREE_HUNDRED(300, "200일"), | ||
ONE_YEAR(365, "1주년"), | ||
FOUR_HUNDRED(400, "400일"), | ||
FIVE_HUNDRED(500, "500일"), | ||
SIX_HUNDRED(600, "600일"), | ||
SEVEN_HUNDRED(700, "700일"), | ||
TWO_YEAR(730, "2주년"), | ||
EIGHT_HUNDRED(800, "800일"), | ||
NINE_HUNDRED(900, "900일"), | ||
ONE_THOUSAND(1000, "1000일"), | ||
THREE_YEAR(1095, "3주년"), | ||
FOUR_YEAR(1460, "4주년"), | ||
FIVE_YEAR(1825, "5주년"), | ||
TWO_THOUSAND(2000, "2000일"); | ||
private int count; | ||
private String date; | ||
|
||
DateCountCategory(int count, String date){ | ||
this.count = count; | ||
this.date = date; | ||
} | ||
} |
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
14 changes: 14 additions & 0 deletions
14
src/main/java/com/codepatissier/keki/calendar/dto/CalendarDateReturn.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,14 @@ | ||
package com.codepatissier.keki.calendar.dto; | ||
|
||
import com.codepatissier.keki.calendar.DateCountCategory; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Getter | ||
public class CalendarDateReturn { | ||
private int calDate; | ||
private DateCountCategory dateCountCategory; | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/com/codepatissier/keki/calendar/dto/CalendarEditRes.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,22 @@ | ||
package com.codepatissier.keki.calendar.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
|
||
import java.util.List; | ||
|
||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Getter | ||
@Setter | ||
|
||
public class CalendarEditRes { | ||
private String kindOfCalendar; // 캘린더 종류 | ||
private String title; | ||
private String date; | ||
|
||
private List<CalendarHashTag> hashTags; | ||
private List<CalendarHashTag> addHashTags; | ||
} |
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
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
4 changes: 3 additions & 1 deletion
4
src/main/java/com/codepatissier/keki/calendar/entity/CalendarTag.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
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
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
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
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
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.