-
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.
Browse files
Browse the repository at this point in the history
…nition [FEAT/#46] ocr, main / ocr 및 바텀 네비게이션 이슈 해결
- Loading branch information
Showing
16 changed files
with
307 additions
and
156 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
16 changes: 16 additions & 0 deletions
16
app/src/main/java/com/keyneez/data/model/request/RequestPostStudentUserCheckDto.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.keyneez.data.model.request | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class RequestPostStudentUserCheckDto( | ||
@SerialName("user_school") | ||
val school: String, | ||
@SerialName("user_name") | ||
val name: String, | ||
@SerialName("user_ocr") | ||
val ocrImg: String, | ||
@SerialName("ocr_dir") | ||
val ocrDir: Boolean | ||
) |
16 changes: 16 additions & 0 deletions
16
app/src/main/java/com/keyneez/data/model/request/RequestPostYouthUserCheckDto.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.keyneez.data.model.request | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class RequestPostYouthUserCheckDto( | ||
@SerialName("user_name") | ||
val name: String, | ||
@SerialName("user_birth") | ||
val birth: String, | ||
@SerialName("user_ocr") | ||
val ocrImg: String, | ||
@SerialName("ocr_dir") | ||
val ocrDir: Boolean | ||
) |
46 changes: 46 additions & 0 deletions
46
app/src/main/java/com/keyneez/data/model/response/ResponsePostUserCheckDto.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,46 @@ | ||
package com.keyneez.data.model.response | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class ResponsePostUserCheckDto( | ||
@SerialName("user_key") | ||
val key: Int, | ||
@SerialName("user_name") | ||
val name: String, | ||
@SerialName("user_age") | ||
val age: String?, | ||
@SerialName("user_gender") | ||
val gender: String?, | ||
@SerialName("user_birth") | ||
val birthDate: String?, | ||
@SerialName("user_school") | ||
val school: String?, | ||
@SerialName("user_character") | ||
val character: Int?, | ||
@SerialName("user_password") | ||
val password: String?, | ||
@SerialName("user_ocr") | ||
val ocrImg: String?, | ||
@SerialName("ocr_dir") | ||
val ocrDir: Boolean?, | ||
@SerialName("user_benefit") | ||
val benefit: Boolean?, | ||
val Characters: Character? | ||
) { | ||
@Serializable | ||
data class Character( | ||
@SerialName("character_key") | ||
val key: Int, | ||
val inter: String?, | ||
val dispo: String?, | ||
val character: String?, | ||
@SerialName("character_img") | ||
val img: String?, | ||
@SerialName("character_desc") | ||
val description: String?, | ||
@SerialName("test_img") | ||
val testImg: 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
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.