-
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
[docs] 리뷰, 요청, 알림, 문의 스웨거 설명 설정
- Loading branch information
Showing
13 changed files
with
403 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
package com.psr.psr.notification.dto | ||
|
||
import com.querydsl.core.annotations.QueryProjection | ||
import io.swagger.v3.oas.annotations.media.Schema | ||
|
||
data class NotiList @QueryProjection constructor( | ||
@Schema(description = "알림 제목", example = "알림 제목") | ||
val title: String, | ||
@Schema(description = "알림 내용", example = "알림 내용") | ||
val content: String | ||
) |
2 changes: 2 additions & 0 deletions
2
src/main/kotlin/com/psr/psr/notification/dto/NotificationListRes.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,8 +1,10 @@ | ||
package com.psr.psr.notification.dto | ||
|
||
import com.querydsl.core.annotations.QueryProjection | ||
import io.swagger.v3.oas.annotations.media.Schema | ||
|
||
data class NotificationListRes @QueryProjection constructor( | ||
@Schema(description = "알림 일자", example = "2023-01-01") | ||
val date: String, | ||
val notiList: List<NotiList> | ||
) |
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.