-
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.
* feat(BE) : 기프티콘 삭제를 위한 DTO 추가(#190) * feat(BE) : 기프티콘 삭제를 위한 쿼리 추가 및 다른 기프티콘 select 쿼리에 삭제 여부 판별 추가(#190) * feat(BE) : 기프티콘 삭제 메소드 추가(#190) * feat(BE) : 기프티콘 삭제 메소드 추가(#190)
- Loading branch information
1 parent
304b09d
commit ddf07ee
Showing
4 changed files
with
40 additions
and
12 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
11 changes: 11 additions & 0 deletions
11
amatta_server/src/main/java/com/amatta/amatta_server/gifticon/dto/GifticonDeleteDto.java
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,11 @@ | ||
package com.amatta.amatta_server.gifticon.dto; | ||
|
||
import lombok.Getter; | ||
|
||
import javax.validation.constraints.NotNull; | ||
|
||
@Getter | ||
public class GifticonDeleteDto { | ||
@NotNull(message = "사용할 기프티콘의 아이디가 필요합니다") | ||
private long gifticonId; | ||
} |
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