fix: 라이브 메인 API

- @JsonProperty 애노테이션 추가
This commit is contained in:
2025-07-21 16:18:33 +09:00
parent ab877beae1
commit 800b8d3216
3 changed files with 5 additions and 5 deletions

View File

@@ -14,9 +14,9 @@ data class GetCommunityPostListResponse @QueryProjection constructor(
@JsonProperty("content") val content: String,
@JsonProperty("price") val price: Int,
@JsonProperty("date") val date: String,
@get:JsonProperty("isCommentAvailable") val isCommentAvailable: Boolean,
@get:JsonProperty("isAdult") val isAdult: Boolean,
@get:JsonProperty("isLike") val isLike: Boolean,
@JsonProperty("isCommentAvailable") val isCommentAvailable: Boolean,
@JsonProperty("isAdult") val isAdult: Boolean,
@JsonProperty("isLike") val isLike: Boolean,
@JsonProperty("existOrdered") val existOrdered: Boolean,
@JsonProperty("likeCount") val likeCount: Int,
@JsonProperty("commentCount") val commentCount: Int,