-
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.
- Loading branch information
Showing
8 changed files
with
102 additions
and
1 deletion.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/main/kotlin/kr/nagaza/nagazaserver/domain/model/CafeRoomAddressMap.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,7 @@ | ||
package kr.nagaza.nagazaserver.domain.model | ||
|
||
data class CafeRoomAddressMap( | ||
val address1: String, | ||
val address2: String, | ||
val count: 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
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
20 changes: 20 additions & 0 deletions
20
...otlin/kr/nagaza/nagazaserver/presenter/restapi/dto/response/CafeRoomAreaFilterResponse.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 kr.nagaza.nagazaserver.presenter.restapi.dto.response | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty | ||
import io.swagger.v3.oas.annotations.media.Schema | ||
|
||
@Schema(description = "방 지역 필터 응답") | ||
data class CafeRoomAreaFilterItem( | ||
@JsonProperty("name") | ||
@Schema(description = "지역 구분 이름", example = "서울시") | ||
val name: String, | ||
@JsonProperty("depth") | ||
@Schema(description = "지역 구분 깊이 (0: 전체, 1: 시, 2: 구)", example = "1") | ||
val depth: Int, | ||
@JsonProperty("count") | ||
@Schema(description = "해당 지역에 속한 방 수", example = "23") | ||
val count: Int, | ||
@JsonProperty("children") | ||
@Schema(description = "하위 지역 목록", example = "[]") | ||
val children: List<CafeRoomAreaFilterItem>, | ||
) |