Skip to content

Commit

Permalink
fix: DTO ã내 boolean 필드 -> Boolean 타입으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
junseokkim committed Mar 24, 2024
1 parent 4020f22 commit 8d2d4c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.umc.networkingService.domain.album.dto.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Getter;

Expand All @@ -15,7 +16,7 @@ public class AlbumDetailResponse {
private int hitCount;
private int heartCount;
private int commentCount;
private boolean isLiked;
private boolean isMine;
private Boolean isLiked;
private Boolean isMine;
private String createdAt;
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.umc.networkingService.domain.album.dto.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public class AlbumHeartResponse {
private boolean isChecked;
private Boolean isChecked;
private int heartCnt;
}

0 comments on commit 8d2d4c7

Please sign in to comment.