-
Notifications
You must be signed in to change notification settings - Fork 3
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 #86 from ttoklip/70-feat-우리동네-댓글-좋아요-스크랩-구현
feat: 마이페이지 주소 수정 기능, 함께해요 참여자 확인하기 기능 구현
- Loading branch information
Showing
84 changed files
with
2,716 additions
and
1,569 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
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
6 changes: 6 additions & 0 deletions
6
app/src/main/java/com/umc/ttoklip/data/model/mypage/Interest.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,6 @@ | ||
package com.umc.ttoklip.data.model.mypage | ||
|
||
data class Interest( | ||
val id: Int, | ||
val categoryName: 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
2 changes: 1 addition & 1 deletion
2
...oklip/data/model/naver/AddressElements.kt → .../model/naver/geocoding/AddressElements.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
2 changes: 1 addition & 1 deletion
2
...umc/ttoklip/data/model/naver/Addresses.kt → ...p/data/model/naver/geocoding/Addresses.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
2 changes: 1 addition & 1 deletion
2
...lip/data/model/naver/GeocodingResponse.kt → ...odel/naver/geocoding/GeocodingResponse.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
2 changes: 1 addition & 1 deletion
2
.../com/umc/ttoklip/data/model/naver/Meta.kt → ...toklip/data/model/naver/geocoding/Meta.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
16 changes: 16 additions & 0 deletions
16
app/src/main/java/com/umc/ttoklip/data/model/naver/reversegeocoding/AreaInfo.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 kr.ac.tukorea.whereareu.data.model.naver | ||
|
||
data class AreaInfo( | ||
val name: String, | ||
val coords:Coords | ||
) | ||
|
||
data class Coords( | ||
val center: Center | ||
) | ||
|
||
data class Center( | ||
val crs: String, | ||
val x: Float, | ||
val y: Float | ||
) |
8 changes: 8 additions & 0 deletions
8
app/src/main/java/com/umc/ttoklip/data/model/naver/reversegeocoding/Land.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,8 @@ | ||
package kr.ac.tukorea.whereareu.data.model.naver | ||
|
||
data class Land( | ||
val number1: String, | ||
val number2: String, | ||
val addition0: LandInfo, | ||
val name: String | ||
) |
6 changes: 6 additions & 0 deletions
6
app/src/main/java/com/umc/ttoklip/data/model/naver/reversegeocoding/LandInfo.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,6 @@ | ||
package kr.ac.tukorea.whereareu.data.model.naver | ||
|
||
data class LandInfo( | ||
val type: String, | ||
val value: String | ||
) |
13 changes: 13 additions & 0 deletions
13
...src/main/java/com/umc/ttoklip/data/model/naver/reversegeocoding/ReverseGeoCodingResult.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,13 @@ | ||
package kr.ac.tukorea.whereareu.data.model.naver | ||
|
||
data class ReverseGeoCodingResult( | ||
val region: RegionInfo, | ||
val land: Land | ||
) | ||
|
||
data class RegionInfo( | ||
val area1: AreaInfo, | ||
val area2: AreaInfo, | ||
val area3: AreaInfo, | ||
val area4: AreaInfo, | ||
) |
9 changes: 9 additions & 0 deletions
9
...c/main/java/com/umc/ttoklip/data/model/naver/reversegeocoding/ReverseGeocodingResponse.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,9 @@ | ||
package com.umc.ttoklip.data.model.naver.reversegeocoding | ||
|
||
import kr.ac.tukorea.whereareu.data.model.naver.ReverseGeoCodingResult | ||
import kr.ac.tukorea.whereareu.data.model.naver.StatusResult | ||
|
||
data class ReverseGeocodingResponse( | ||
val status: StatusResult, | ||
val results: List<ReverseGeoCodingResult> | ||
) |
7 changes: 7 additions & 0 deletions
7
app/src/main/java/com/umc/ttoklip/data/model/naver/reversegeocoding/StatusResult.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.ac.tukorea.whereareu.data.model.naver | ||
|
||
data class StatusResult( | ||
val code: Int, | ||
val name: String, | ||
val message: 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
9 changes: 9 additions & 0 deletions
9
app/src/main/java/com/umc/ttoklip/data/model/town/EditCommunication.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,9 @@ | ||
package com.umc.ttoklip.data.model.town | ||
|
||
import java.io.Serializable | ||
|
||
data class EditCommunication( | ||
val postId: Long, | ||
val title: String, | ||
val content: String, | ||
): Serializable |
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,5 +1,6 @@ | ||
package com.umc.ttoklip.data.model.town | ||
|
||
data class ImageUrl( | ||
val imageUrl: String | ||
val communityImageId: Int, | ||
val communityImageUrl: String | ||
) |
6 changes: 6 additions & 0 deletions
6
app/src/main/java/com/umc/ttoklip/data/model/town/Participants.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,6 @@ | ||
package com.umc.ttoklip.data.model.town | ||
|
||
data class Participants( | ||
val nickname: String, | ||
val profileImgUrl: String | ||
) |
5 changes: 5 additions & 0 deletions
5
app/src/main/java/com/umc/ttoklip/data/model/town/ParticipantsResponse.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,5 @@ | ||
package com.umc.ttoklip.data.model.town | ||
|
||
data class ParticipantsResponse( | ||
val cartMemberResponses: List<Participants> | ||
) |
5 changes: 5 additions & 0 deletions
5
app/src/main/java/com/umc/ttoklip/data/model/town/TownImageUrl.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,5 @@ | ||
package com.umc.ttoklip.data.model.town | ||
|
||
data class TownImageUrl( | ||
val imageUrl: 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
Oops, something went wrong.