소스 경로 변경
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
|
||||
/**
|
||||
@@ -1,13 +1,15 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import com.fasterxml.jackson.core.type.TypeReference;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import java.util.Map;
|
||||
import java.util.HashMap;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.fasterxml.jackson.core.type.TypeReference;
|
||||
import io.shinhanlife.dap.mcc.dto.BillingStatusReq;
|
||||
import io.shinhanlife.dap.mcc.dto.BillingProcessReq;
|
||||
import io.shinhanlife.dap.mcc.dto.BillingStatusReq;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@McpTool(
|
||||
routingType = "MCI",
|
||||
@@ -1,9 +1,10 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.BondCheckReq;
|
||||
import io.shinhanlife.dap.mcc.dto.BondIssueReq;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
|
||||
@McpTool(
|
||||
routingType = "EAI",
|
||||
@@ -1,10 +1,10 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.LeaveCountReq;
|
||||
import io.shinhanlife.dap.mcc.dto.VacationRegisterReq;
|
||||
import io.shinhanlife.dap.mcc.dto.LeaveCountReq;
|
||||
import io.shinhanlife.dap.mcc.dto.LeaveCountReq;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
|
||||
@McpTool(
|
||||
routingType = "HTTP",
|
||||
@@ -1,9 +1,10 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.ContractStatusReq;
|
||||
import io.shinhanlife.dap.mcc.dto.ContractDetailReq;
|
||||
import io.shinhanlife.dap.mcc.dto.ContractStatusReq;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
|
||||
@McpTool(
|
||||
routingType = "HTTP",
|
||||
@@ -1,9 +1,10 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.CustomerGradeReq;
|
||||
import io.shinhanlife.dap.mcc.dto.CustomerDetailReq;
|
||||
import io.shinhanlife.dap.mcc.dto.CustomerGradeReq;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
|
||||
@McpTool(
|
||||
routingType = "TCP",
|
||||
@@ -1,9 +1,11 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import org.springframework.stereotype.Service;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.web.client.RestClient;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
/**
|
||||
* @package io.shinhanlife.dap.mcc.service
|
||||
@@ -1,13 +1,13 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.common.integration.mci.component.AxhubMciComponent;
|
||||
import io.shinhanlife.glow.communication.dto.Transfer;
|
||||
import org.springframework.stereotype.Service;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.Onnba3011ReqDto;
|
||||
import io.shinhanlife.glow.communication.dto.Transfer;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @package io.shinhanlife.dap.mcc.service
|
||||
@@ -1,4 +1,4 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.common.adapter.sender.ShinhanMciSender;
|
||||
import io.shinhanlife.dap.common.integration.mci.dto.MciRequestWrapper;
|
||||
@@ -1,13 +1,15 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.MciSampleStringRes;
|
||||
import io.shinhanlife.dap.mcc.dto.SampleStringReq;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
import io.shinhanlife.glow.util.GlowMciParser;
|
||||
import org.springframework.stereotype.Service;
|
||||
import java.util.Map;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @package io.shinhanlife.dap.mcc.service
|
||||
@@ -1,13 +1,15 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.TemplateDownloadReq;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Slf4j
|
||||
@Service
|
||||
@@ -1,14 +1,16 @@
|
||||
package io.shinhanlife.dap.mcc.service;
|
||||
package io.shinhanlife.dap.mcc.other.service;
|
||||
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpFunction;
|
||||
import io.shinhanlife.dap.mcc.annotation.McpTool;
|
||||
import io.shinhanlife.dap.mcc.dto.WeatherReq;
|
||||
import io.shinhanlife.dap.mcc.dto.WeatherRes;
|
||||
import io.shinhanlife.dap.mcc.service.AbstractMcpToolService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.web.client.RestClient;
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
|
||||
Reference in New Issue
Block a user