소스 수정 완료

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.tool.hr.mapper;
package io.shinhanlife.axhub.biz.mcp.tool.hr.converter;
import io.shinhanlife.axhub.biz.mcp.tool.dto.SearchDetailHrReq;
import io.shinhanlife.axhub.biz.mcp.tool.dto.SearchDetailHrRes;
@@ -9,8 +9,8 @@ import org.mapstruct.Mapping;
import org.mapstruct.factory.Mappers;
/**
* @package io.shinhanlife.axhub.biz.mcp.tool.hr.mapper
* @className SearchDetailHrMciMapper
* @package io.shinhanlife.axhub.biz.mcp.tool.hr.converter
* @className SearchDetailHrMciConverter
* @description AX HUB 시스템 처리 클래스
* @author root
* @create 2026.07.13
@@ -23,9 +23,9 @@ import org.mapstruct.factory.Mappers;
* </pre>
*/
@Mapper(componentModel = "spring")
public interface SearchDetailHrMciMapper {
public interface SearchDetailHrMciConverter {
SearchDetailHrMciMapper INSTANCE = Mappers.getMapper(SearchDetailHrMciMapper.class);
SearchDetailHrMciConverter INSTANCE = Mappers.getMapper(SearchDetailHrMciConverter.class);
// @Mapping(source = "sourceField", target = "targetField")
SearchDetailHrMciReqDto toMciReq(SearchDetailHrReq req);