-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NABI-205--refactor : suggestionInfo, cardInfo 명시
- Loading branch information
Showing
5 changed files
with
60 additions
and
40 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
src/main/java/org/prgrms/nabimarketbe/domain/card/dto/response/CardReadResponseDTO.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,13 @@ | ||
package org.prgrms.nabimarketbe.domain.card.dto.response; | ||
|
||
import lombok.Getter; | ||
import org.prgrms.nabimarketbe.domain.item.entity.PriceRange; | ||
|
||
@Getter | ||
public class CardReadResponseDTO { | ||
private Long cardId; | ||
private String cardTitle; | ||
private String itemName; | ||
private PriceRange priceRange; | ||
private String thumbnail; | ||
} |
18 changes: 18 additions & 0 deletions
18
...a/org/prgrms/nabimarketbe/domain/suggestion/dto/response/SuggestionDetailResponseDTO.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,18 @@ | ||
package org.prgrms.nabimarketbe.domain.suggestion.dto.response; | ||
|
||
import lombok.Getter; | ||
import org.prgrms.nabimarketbe.domain.suggestion.entity.DirectionType; | ||
import org.prgrms.nabimarketbe.domain.suggestion.entity.SuggestionStatus; | ||
import org.prgrms.nabimarketbe.domain.suggestion.entity.SuggestionType; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
@Getter | ||
public class SuggestionDetailResponseDTO { | ||
private Long suggestionId; | ||
private SuggestionType suggestionType; | ||
private SuggestionStatus suggestionStatus; | ||
private LocalDateTime createdAt; | ||
private LocalDateTime modifiedAt; | ||
private DirectionType directionType; | ||
} |
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