-
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 #104 from INFRAcp/seungmin
[feat] #103 Project Search Server Connection
- Loading branch information
Showing
13 changed files
with
169 additions
and
161 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
27 changes: 27 additions & 0 deletions
27
app/src/main/java/com/example/infraandroid/category/model/ResponseViewIdeaData.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,27 @@ | ||
package com.example.infraandroid.category.model | ||
|
||
data class ResponseViewIdeaData( | ||
val code: Int, | ||
val isSuccess: Boolean, | ||
val message: String, | ||
val result: Result | ||
){ | ||
data class Result( | ||
val hashtag: List<String>, | ||
val pjLikeCount: Int, | ||
val pj_categoryName: String, | ||
val pj_content: String, | ||
val pj_deadline: String, | ||
val pj_endTerm: String, | ||
val pj_header: String, | ||
val pj_progress: String, | ||
val pj_recruitPerson: String, | ||
val pj_startTerm: String, | ||
val pj_subCategoryName: String, | ||
val pj_totalPerson: String, | ||
val pj_views: Int, | ||
val user_id: String, | ||
val user_nickname: String, | ||
val user_prPhoto: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ data class ResponseCreateProjectData( | |
@SerializedName("pj_name") | ||
val projectTitle : String | ||
) | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
app/src/main/java/com/example/infraandroid/home/model/ResponseSearchProjectData.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,24 @@ | ||
package com.example.infraandroid.home.model | ||
|
||
data class ResponseSearchProjectData( | ||
val code: Int, | ||
val isSuccess: Boolean, | ||
val message: String, | ||
val result: List<Result> | ||
){ | ||
data class Result( | ||
val hashtag: Any, | ||
val pj_categoryName: String, | ||
val pj_daysub: Int, | ||
val pj_deadline: String, | ||
val pj_header: String, | ||
val pj_like: Int, | ||
val pj_num: Int, | ||
val pj_photo: List<String>, | ||
val pj_progress: String, | ||
val pj_recruit: String, | ||
val pj_recruitPerson: Int, | ||
val pj_totalPerson: Int, | ||
val user_id: 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
Oops, something went wrong.