generated from GSM-MSG/MSG-Repository-Generator
-
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 #202 from GSM-MSG/201-update/exit-reservation
# 201 예약 취소 시 회원 상태 변경
- Loading branch information
Showing
4 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/team/msg/hiv2/domain/notice/presentation/data/web/CreateNoticeWebRequest.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,10 +1,13 @@ | ||
package team.msg.hiv2.domain.notice.presentation.data.web | ||
|
||
import javax.validation.constraints.NotBlank | ||
import javax.validation.constraints.Size | ||
|
||
data class CreateNoticeWebRequest( | ||
@field:NotBlank | ||
@field:Size(max = 20) | ||
val title: String, | ||
@field:NotBlank | ||
@field:Size(max = 200) | ||
val content: String | ||
) |
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/team/msg/hiv2/domain/notice/presentation/data/web/UpdateNoticeWebRequest.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,10 +1,13 @@ | ||
package team.msg.hiv2.domain.notice.presentation.data.web | ||
|
||
import javax.validation.constraints.NotEmpty | ||
import javax.validation.constraints.Size | ||
|
||
data class UpdateNoticeWebRequest( | ||
@field:NotEmpty | ||
@field:Size(max = 20) | ||
val title: String, | ||
@field:NotEmpty | ||
@field:Size(max = 200) | ||
val content: 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
3 changes: 1 addition & 2 deletions
3
...n/kotlin/team/msg/hiv2/domain/reservation/persistence/repository/ReservationRepository.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