-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from SWM-WeLike2Coding/feat/maturityEvaluation…
…Date feat: 특정 상품의 만기상환평가일 및 타입 조회 기능
- Loading branch information
Showing
3 changed files
with
58 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...service/domain/product/model/dto/response/ResponseMaturityRepaymentEvaluationDateDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.wl2c.elswhereproductservice.domain.product.model.dto.response; | ||
|
||
import com.wl2c.elswhereproductservice.domain.product.model.MaturityEvaluationDateType; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.Getter; | ||
|
||
import java.time.LocalDate; | ||
|
||
@Getter | ||
public class ResponseMaturityRepaymentEvaluationDateDto { | ||
|
||
@Schema(description = "만기상환평가일", example = "2027-07-13") | ||
private final LocalDate maturityRepaymentEvaluationDate; | ||
|
||
@Schema(description = "만기상환평가일 개수", example = "SINGLE or MULTIPLE or UNKNOWN") | ||
private final MaturityEvaluationDateType maturityRepaymentEvaluationDateType; | ||
|
||
public ResponseMaturityRepaymentEvaluationDateDto(LocalDate maturityRepaymentEvaluationDate, | ||
MaturityEvaluationDateType maturityRepaymentEvaluationDateType) { | ||
this.maturityRepaymentEvaluationDate = maturityRepaymentEvaluationDate; | ||
this.maturityRepaymentEvaluationDateType = maturityRepaymentEvaluationDateType; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters