Skip to content

Commit

Permalink
feat: 컨트롤러에 만기상환평가일 및 타입 조회 기능 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kjungw1025 committed Jul 31, 2024
1 parent 71f7ff6 commit 4c1a712
Showing 1 changed file with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.wl2c.elswhereproductservice.domain.product.model.dto.list.SummarizedProductDto;
import com.wl2c.elswhereproductservice.domain.product.model.dto.request.RequestProductSearchDto;
import com.wl2c.elswhereproductservice.domain.product.model.dto.response.ResponseMaturityRepaymentEvaluationDateDto;
import com.wl2c.elswhereproductservice.domain.product.model.dto.response.ResponseNextRepaymentEvaluationDateDto;
import com.wl2c.elswhereproductservice.domain.product.model.dto.response.ResponseProductComparisonTargetDto;
import com.wl2c.elswhereproductservice.domain.product.model.dto.response.ResponseSingleProductDto;
Expand Down Expand Up @@ -75,9 +76,9 @@ public ResponsePage<SummarizedProductDto> listByEndSale(@RequestParam(name = "ty
* <p>
* maturityEvaluationDateType(만기 평가일 개수)을 제공하는 이유<br/>
* 발행사에서 만기 평가일의 경우, 예정거래일 중 거래소 또는 관련 거래소가 개장하지 못하거나 시장교란 사유가 발생한 날을 대비하여 여러 만기 평가일을 제공하는 경우가 있습니다.<br/>
* 실제 서버에서는 maturityEvaluationDate는 최초 만기 평가일 날짜만 가져오지만, 발행사가 만기 평가일을 여러 날로 설정했음을 나타내고자 해당 maturityEvaluationDateType을 제공합니다.<br/><br/>
* 실제 서버에서는 maturityEvaluationDate는 최초 만기 평가일 날짜만 가져오지만, 발행사가 만기 평가일을 여러 날로 설정했음을 나타내고자 해당 maturityRepaymentEvaluationDateType을 제공합니다.<br/><br/>
*
* maturityEvaluationDateType(만기 평가일 개수)의 각 값들의 의미는 아래와 같습니다.
* maturityRepaymentEvaluationDateType(만기상환평가일 타입)의 각 값들의 의미는 아래와 같습니다.
*
* 한 개의 만기 평가일 : SINGLE
* 여러 개의 만기 평가일 : MULTIPLE
Expand Down Expand Up @@ -138,4 +139,21 @@ public ResponseNextRepaymentEvaluationDateDto findNextRepaymentEvaluationDate(@P
return repaymentEvaluationDatesService.findNextRepaymentEvaluationDate(id);
}

/**
* 특정 상품의 만기상환평가일 및 만기상환평가일 타입 조회
* <p>
* maturityRepaymentEvaluationDateType(만기상환평가일 타입)의 각 값들의 의미는 아래와 같습니다.
*
* 한 개의 만기 평가일 : SINGLE
* 여러 개의 만기 평가일 : MULTIPLE
* 파악되지 않음(서버에서 추가 파싱 필요 혹은 투자 설명서 오류) : UNKNOWN
* </p>
*
* @param id 상품 id
* @return 만기상환평가일 및 만기상환평가일 타입 dto
*/
@GetMapping("/maturity/evaluation/{id}")
public ResponseMaturityRepaymentEvaluationDateDto findMaturityRepaymentEvaluationDate(@PathVariable Long id) {
return repaymentEvaluationDatesService.findMaturityRepaymentEvaluationDate(id);
}
}

0 comments on commit 4c1a712

Please sign in to comment.