Skip to content

Commit

Permalink
fix: 체크리스트 조회 시 전체 목록 전달해주도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Walkers15 committed Mar 17, 2024
1 parent ee1ce7d commit 9f57ca9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.dnd.bbok.member.application.port.in.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;

Expand All @@ -13,7 +14,8 @@ public class GetDetailMemberChecklistResponse {
private final String criteria;

@ApiModelProperty(name = "사용 여부")
private final boolean isUsed;
@JsonProperty("isUsed")
private final Boolean isUsed;

public GetDetailMemberChecklistResponse(Long id, String criteria, boolean isUsed) {
this.id = id;
Expand Down

0 comments on commit 9f57ca9

Please sign in to comment.