-
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 pull request #105 from KUSITMS-29th-TEAM-B/feat/flight-53
상위 태그 내 하위 태그 조회 API 구현(#53)
- Loading branch information
Showing
7 changed files
with
164 additions
and
56 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
21 changes: 21 additions & 0 deletions
21
...odule/src/main/kotlin/com/bamyanggang/apimodule/domain/tag/application/dto/GetChildTag.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,21 @@ | ||
package com.bamyanggang.apimodule.domain.tag.application.dto | ||
|
||
import com.bamyanggang.apimodule.domain.tag.application.dto.GetParentTag.TagDetail | ||
import java.util.* | ||
|
||
class GetChildTag { | ||
data class Response( | ||
val tags: List<TagDetail> | ||
) | ||
|
||
data class TotalTagInfo( | ||
val totalExperienceCount: Int, | ||
val tagInfos : List<ChildTagSummary> | ||
) | ||
|
||
data class ChildTagSummary( | ||
val id: UUID, | ||
val name: String, | ||
val experienceCount: Int | ||
) | ||
} |
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.