-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat/flight-115
- Loading branch information
Showing
51 changed files
with
527 additions
and
105 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
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
15 changes: 14 additions & 1 deletion
15
...main/kotlin/com/bamyanggang/apimodule/domain/experience/application/dto/ExperienceYear.kt
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,7 +1,20 @@ | ||
package com.bamyanggang.apimodule.domain.experience.application.dto | ||
|
||
import java.util.* | ||
|
||
class ExperienceYear { | ||
data class Response( | ||
val years : List<Int> | ||
val years : List<Int>, | ||
val yearTagInfos: List<YearTagInfo> | ||
) | ||
|
||
data class YearTagInfo( | ||
val year: Int, | ||
val tags: List<TagDetail> | ||
) | ||
|
||
data class TagDetail( | ||
val id: UUID, | ||
val name: String, | ||
) | ||
} |
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
16 changes: 16 additions & 0 deletions
16
...n/com/bamyanggang/apimodule/domain/jobDescription/scheduler/UpdateWriteStatusScheduler.kt
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,16 @@ | ||
package com.bamyanggang.apimodule.domain.jobDescription.scheduler | ||
|
||
import com.bamyanggang.apimodule.domain.jobDescription.application.service.JobDescriptionInfoUpdateService | ||
import org.springframework.scheduling.annotation.Scheduled | ||
import org.springframework.stereotype.Component | ||
|
||
@Component | ||
class UpdateWriteStatusScheduler( | ||
private val jobDescriptionInfoUpdateService: JobDescriptionInfoUpdateService | ||
) { | ||
|
||
// 1분마다 돌아감 | ||
@Scheduled(cron = "0 * * * * *", zone = "Asia/Seoul") | ||
fun changeJobDescriptionWritingStatus() = jobDescriptionInfoUpdateService.invoke() | ||
|
||
} |
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
20 changes: 20 additions & 0 deletions
20
Api-Module/src/main/kotlin/com/bamyanggang/apimodule/domain/tag/application/dto/GetTag.kt
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,20 @@ | ||
package com.bamyanggang.apimodule.domain.tag.application.dto | ||
|
||
import java.util.* | ||
|
||
class GetTag { | ||
data class Response( | ||
val tags: List<ParentTagDetail> | ||
) | ||
|
||
data class ParentTagDetail( | ||
val id: UUID, | ||
val name: String, | ||
val childTags: List<ChildTagDetail> | ||
) | ||
|
||
data class ChildTagDetail( | ||
val id: UUID, | ||
val name: String, | ||
) | ||
} |
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.