Skip to content

Commit

Permalink
update :: feed details dto
Browse files Browse the repository at this point in the history
  • Loading branch information
jyk1029 committed Jan 23, 2024
1 parent 33c5db6 commit 87c4806
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.example.boheom.domain.feed.presentation.dto.response

import java.time.LocalDate
import java.time.LocalDateTime
import java.util.UUID

Expand All @@ -8,6 +9,8 @@ data class FeedDetailsResponse(
val title: String,
val content: String,
val username: String,
val startDay: LocalDate,
val endDay: LocalDate,
val createdAt: LocalDateTime,
val tags: List<String>,
val view: Int,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class QueryFeedDetailsService(
feed.title,
feed.content,
feed.user.nickname,
feed.startDay,
feed.endDay,
feed.createdAt,
tags,
feed.view,
Expand Down

0 comments on commit 87c4806

Please sign in to comment.