-
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.
๐ :: (#16) ์ ์ฒด ์ฝ๋ ๋ฆฌํฉํ ๋ง
๐ :: (#16) ์ ์ฒด ์ฝ๋ ๋ฆฌํฉํ ๋ง
- Loading branch information
Showing
27 changed files
with
269 additions
and
203 deletions.
There are no files selected for viewing
9 changes: 1 addition & 8 deletions
9
point-domain/src/main/kotlin/com/xquare/v1servicepoint/point/api/PointApi.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 |
---|---|---|
@@ -1,23 +1,16 @@ | ||
package com.xquare.v1servicepoint.point.api | ||
|
||
import com.xquare.v1servicepoint.point.api.dto.request.DomainUpdatePointRoleRequest | ||
import com.xquare.v1servicepoint.point.api.dto.request.DomainSavePointRoleRequest | ||
import com.xquare.v1servicepoint.point.api.dto.request.DomainUpdatePointRoleRequest | ||
import com.xquare.v1servicepoint.point.api.dto.response.PointRuleListResponse | ||
import com.xquare.v1servicepoint.point.api.dto.response.PointStatusResponse | ||
import com.xquare.v1servicepoint.point.api.dto.response.PointStudentStatusResponse | ||
import java.util.UUID | ||
|
||
interface PointApi { | ||
|
||
suspend fun queryPointStatus(userId: UUID): PointStatusResponse | ||
|
||
suspend fun updatePointRole(pointId: UUID, request: DomainUpdatePointRoleRequest) | ||
|
||
suspend fun deletePointRole(pointId: UUID) | ||
|
||
suspend fun savePointRole(request: DomainSavePointRoleRequest) | ||
|
||
suspend fun queryPointRoleList(type: Boolean): PointRuleListResponse | ||
|
||
suspend fun queryStudentStatus(name: String?, penaltyLevel: Int?): PointStudentStatusResponse | ||
} |
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
point-domain/src/main/kotlin/com/xquare/v1servicepoint/point/api/PointStatusApi.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.xquare.v1servicepoint.point.api | ||
|
||
import com.xquare.v1servicepoint.point.api.dto.response.PointStatusResponse | ||
import com.xquare.v1servicepoint.point.api.dto.response.PointStudentStatusResponse | ||
import java.util.UUID | ||
|
||
interface PointStatusApi { | ||
|
||
suspend fun saveUserPenaltyEducationComplete(userId: UUID) | ||
|
||
suspend fun savePointStatus(userId: UUID) | ||
|
||
suspend fun queryUserPointStatus(userId: UUID): PointStatusResponse | ||
|
||
suspend fun queryStudentStatus(name: String?, penaltyLevel: Int?): PointStudentStatusResponse | ||
} |
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.