소스 경로 변경

This commit is contained in:
jade
2026-07-22 09:14:14 +09:00
parent 885963c81c
commit 0a5bc52e6a
18 changed files with 20 additions and 36 deletions

View File

@@ -1,9 +1,8 @@
package io.shinhanlife.dap.mcc.email.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.EmailSendReq; import io.shinhanlife.dap.mcc.dto.EmailSendReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import java.util.HashMap; import java.util.HashMap;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
/** /**
@@ -18,7 +18,6 @@ package io.shinhanlife.dap.mcc.other.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.BalanceReq; import io.shinhanlife.dap.mcc.dto.BalanceReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
@@ -6,7 +6,6 @@ import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.BillingProcessReq; import io.shinhanlife.dap.mcc.dto.BillingProcessReq;
import io.shinhanlife.dap.mcc.dto.BillingStatusReq; import io.shinhanlife.dap.mcc.dto.BillingStatusReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;

View File

@@ -1,10 +1,9 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.BondCheckReq; import io.shinhanlife.dap.mcc.dto.BondCheckReq;
import io.shinhanlife.dap.mcc.dto.BondIssueReq; import io.shinhanlife.dap.mcc.dto.BondIssueReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
@McpTool( @McpTool(
routingType = "EAI", routingType = "EAI",

View File

@@ -1,10 +1,9 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.LeaveCountReq; import io.shinhanlife.dap.mcc.dto.LeaveCountReq;
import io.shinhanlife.dap.mcc.dto.VacationRegisterReq; import io.shinhanlife.dap.mcc.dto.VacationRegisterReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
@McpTool( @McpTool(
routingType = "HTTP", routingType = "HTTP",

View File

@@ -1,10 +1,9 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.ContractDetailReq; import io.shinhanlife.dap.mcc.dto.ContractDetailReq;
import io.shinhanlife.dap.mcc.dto.ContractStatusReq; import io.shinhanlife.dap.mcc.dto.ContractStatusReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
@McpTool( @McpTool(
routingType = "HTTP", routingType = "HTTP",

View File

@@ -1,10 +1,9 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.CustomerDetailReq; import io.shinhanlife.dap.mcc.dto.CustomerDetailReq;
import io.shinhanlife.dap.mcc.dto.CustomerGradeReq; import io.shinhanlife.dap.mcc.dto.CustomerGradeReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
@McpTool( @McpTool(
routingType = "TCP", routingType = "TCP",

View File

@@ -1,8 +1,7 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@@ -1,8 +1,7 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.web.client.RestClient; import org.springframework.web.client.RestClient;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.common.integration.mci.component.AxhubMciComponent; import io.shinhanlife.dap.common.integration.mci.component.AxhubMciComponent;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.common.adapter.sender.ShinhanMciSender; import io.shinhanlife.dap.common.adapter.sender.ShinhanMciSender;
import io.shinhanlife.dap.common.integration.mci.dto.MciRequestWrapper; import io.shinhanlife.dap.common.integration.mci.dto.MciRequestWrapper;

View File

@@ -1,10 +1,9 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.MciSampleStringRes; import io.shinhanlife.dap.mcc.dto.MciSampleStringRes;
import io.shinhanlife.dap.mcc.dto.SampleStringReq; import io.shinhanlife.dap.mcc.dto.SampleStringReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import io.shinhanlife.glow.util.GlowMciParser; import io.shinhanlife.glow.util.GlowMciParser;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@@ -1,9 +1,8 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.TemplateDownloadReq; import io.shinhanlife.dap.mcc.dto.TemplateDownloadReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.other.service; package io.shinhanlife.dap.mcc.service;
import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
@@ -6,7 +6,6 @@ import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.WeatherReq; import io.shinhanlife.dap.mcc.dto.WeatherReq;
import io.shinhanlife.dap.mcc.dto.WeatherRes; import io.shinhanlife.dap.mcc.dto.WeatherRes;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.web.client.RestClient; import org.springframework.web.client.RestClient;

View File

@@ -1,9 +1,8 @@
package io.shinhanlife.dap.mcc.payment.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.PaymentApprovalReq; import io.shinhanlife.dap.mcc.dto.PaymentApprovalReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.sms.converter; package io.shinhanlife.dap.mcc.converter;
/** /**
@@ -19,7 +19,6 @@ import io.shinhanlife.dap.mcc.dto.SmsSendReq;
import io.shinhanlife.dap.mcc.sms.dto.SmsLegacyReqDto; import io.shinhanlife.dap.mcc.sms.dto.SmsLegacyReqDto;
import org.mapstruct.Mapper; import org.mapstruct.Mapper;
import org.mapstruct.Mapping; import org.mapstruct.Mapping;
import org.mapstruct.factory.Mappers;
@Mapper(componentModel = "spring") @Mapper(componentModel = "spring")
public interface SmsLegacyConverter { public interface SmsLegacyConverter {

View File

@@ -1,9 +1,9 @@
package io.shinhanlife.dap.mcc.sms.dto; package io.shinhanlife.dap.mcc.legacy;
/** /**
* @package io.shinhanlife.dap.mcc.sms.dto * @package io.shinhanlife.dap.mcc.sms.dto
* @className SmsLegacyReqDto * @className SmsLegacyReq
* @description AX HUB 시스템 처리 클래스 * @description AX HUB 시스템 처리 클래스
* @author 김형식 * @author 김형식
* @create 2026.09.01 * @create 2026.09.01
@@ -20,7 +20,7 @@ import lombok.Getter;
@Getter @Getter
@Builder @Builder
public class SmsLegacyReqDto { public class SmsLegacyReq {
/** /**
* EAI 시스템이 요구하는 수신자 번호 파라미터명 * EAI 시스템이 요구하는 수신자 번호 파라미터명
*/ */

View File

@@ -1,10 +1,8 @@
package io.shinhanlife.dap.mcc.sms.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;
import io.shinhanlife.dap.mcc.annotation.McpTool; import io.shinhanlife.dap.mcc.annotation.McpTool;
import io.shinhanlife.dap.mcc.dto.SmsSendReq; import io.shinhanlife.dap.mcc.dto.SmsSendReq;
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
import io.shinhanlife.dap.mcc.sms.converter.SmsLegacyConverter;
import io.shinhanlife.dap.mcc.sms.dto.SmsLegacyReqDto; import io.shinhanlife.dap.mcc.sms.dto.SmsLegacyReqDto;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;