Skip to content

Commit

Permalink
refactor : RecommendPolicyInfoResponseDto 에서 정책 수혜금액 자료형 double -> in…
Browse files Browse the repository at this point in the history
…t 로 수정
  • Loading branch information
LHS-11 committed Nov 15, 2023
1 parent 5526ac7 commit ff2f4e5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ public static class recommendPolicyInfo {
private int supportTypePolicyCnt;

@ApiModelProperty(notes = "정책 수혜금액", example = "1560000")
private double benefit;
private int benefit;

@ApiModelProperty(notes = "정책 기간 타입", example = "1560000")
private String policyDateType;

@Builder
public recommendPolicyInfo(SupportPolicyType supportType, String supportTypeDescription, Long policyId, String policyName, String policyLogo, String policyAreaCode, String policyCityCode, String policyIntroduction, int supportTypePolicyCnt, double benefit, String policyDateType) {
public recommendPolicyInfo(SupportPolicyType supportType, String supportTypeDescription, Long policyId, String policyName, String policyLogo, String policyAreaCode, String policyCityCode, String policyIntroduction, int supportTypePolicyCnt, int benefit, String policyDateType) {
this.supportType = supportType;
this.supportTypeDescription = supportTypeDescription;
this.policyId = policyId;
Expand Down

0 comments on commit ff2f4e5

Please sign in to comment.