소스 수정 완료

This commit is contained in:
jade
2026-07-13 17:30:44 +09:00
parent 4d5832c0ef
commit 6ea0e827a5
6 changed files with 28 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.axhub.biz.mcp.sample.mapper;
package io.shinhanlife.axhub.biz.mcp.sample.converter;
import io.shinhanlife.axhub.biz.mcp.sample.dto.SampleAiReqDto;
import io.shinhanlife.axhub.biz.mcp.sample.dto.SampleMciReqDto;
@@ -7,10 +7,10 @@ import org.mapstruct.Mapping;
import org.mapstruct.factory.Mappers;
@Mapper(componentModel = "spring")
public interface SampleMciMapper {
public interface SampleMciConverter {
// 테스트 환경 등에서 Spring Bean 주입 없이 직접 접근하기 위한 INSTANCE 제공 (IDE 에러 방지용)
SampleMciMapper INSTANCE = Mappers.getMapper(SampleMciMapper.class);
SampleMciConverter INSTANCE = Mappers.getMapper(SampleMciConverter.class);
/**
* AI Agent의 DTO를 MCI 통신용 DTO로 변환합니다.