Skip to content

Commit

Permalink
fix: 보상금청구, 손해사정 request 어노테이션 수정
Browse files Browse the repository at this point in the history
NoArgsConstructor삭제
  • Loading branch information
ibaesuyeon committed Dec 7, 2023
1 parent 9d49ad0 commit f40ae8f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

@Getter
@RequiredArgsConstructor
@NoArgsConstructor(force = true)
@Schema(description = "보상금청구 및 사고접수 Request")
public class CreateCarAccidentRequest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

@Getter
@RequiredArgsConstructor
@NoArgsConstructor(force = true)
@Schema(description = "보상금청구 Request")
public class CreateCompensationClaimRequest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package aplus.insurancesystem.domain.compensationClaim.dto.request;

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.RequiredArgsConstructor;
import org.springframework.web.multipart.MultipartFile;

@Getter
@RequiredArgsConstructor
@NoArgsConstructor(force = true)
@Schema(description = "손해사정 수정 Request")
public class UpdateSurveyRequest {

private final String managerName;
Expand Down

0 comments on commit f40ae8f

Please sign in to comment.