Skip to content

Commit

Permalink
Merge pull request #216 from fourix4/dev
Browse files Browse the repository at this point in the history
 fix : mapping 에러 수정
  • Loading branch information
TaeHoon0 authored Jul 28, 2024
2 parents f8ec5cb + d174a00 commit 0aa0631
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.example.CatchStudy.domain.dto.request;

import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
Expand All @@ -9,6 +11,7 @@
@Getter
@NoArgsConstructor
@AllArgsConstructor
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class RoomInfoRequestDto {

private Long cancelAvailableTime;
Expand Down

0 comments on commit 0aa0631

Please sign in to comment.