Skip to content

Commit

Permalink
[HOTFIX] NON NULL 대상 필드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yummygyudon committed Jan 27, 2025
1 parent 230ab60 commit 7f20c46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public record AlarmGetResponse(
Integer targetGeneration,
String createDate,
String createTime,
@JsonInclude(value = NON_NULL)
String intendDate,
String intendTime,
@JsonInclude(value = NON_NULL)
String intendTime,
String sendDate,
@JsonInclude(value = NON_NULL)
String sendTime,
String title,
String content,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import lombok.Builder;
import lombok.val;
import org.sopt.makers.operation.alarm.domain.Alarm;
import org.sopt.makers.operation.constant.AlarmConstant;

@Builder(access = PRIVATE)
public record AlarmListGetResponse(
Expand All @@ -37,8 +36,8 @@ private record AlarmResponse(
@JsonInclude(value = NON_NULL)
String targetPart,
String category,
String intendAt,
@JsonInclude(value = NON_NULL)
String intendAt,
String sendAt,
String title,
String content
Expand Down

0 comments on commit 7f20c46

Please sign in to comment.