refactor: Fix all inline FQ names with proper imports and add Javadoc to 67 files

This commit is contained in:
jade
2026-07-17 15:20:26 +09:00
parent 467289bf9f
commit 7eef3a65c5
68 changed files with 1165 additions and 32 deletions

View File

@@ -1,5 +1,20 @@
package io.shinhanlife.dap.biz.mcp.tool.dto;
/**
* @package io.shinhanlife.dap.biz.mcp.tool.dto
* @className BalanceReq
* @description AX HUB 시스템 처리 클래스
* @author 김형식
* @create 2026.09.01
* <pre>
* ---------- 개정이력 ----------
* 수정일 수정자 수정내용
* ---------- -------- ---------------------------
* 2026.09.01 김형식 최초생성
*
* </pre>
*/
import io.shinhanlife.dap.biz.mcp.tool.annotation.McpParameter;
import lombok.Data;

View File

@@ -1,5 +1,20 @@
package io.shinhanlife.dap.biz.mcp.tool.dto;
/**
* @package io.shinhanlife.dap.biz.mcp.tool.dto
* @className BalanceRes
* @description AX HUB 시스템 처리 클래스
* @author 김형식
* @create 2026.09.01
* <pre>
* ---------- 개정이력 ----------
* 수정일 수정자 수정내용
* ---------- -------- ---------------------------
* 2026.09.01 김형식 최초생성
*
* </pre>
*/
import lombok.Data;
@Data

View File

@@ -1,5 +1,20 @@
package io.shinhanlife.dap.biz.mcp.tool.other;
/**
* @package io.shinhanlife.dap.biz.mcp.tool.other
* @className DapToolOtherApplication
* @description AX HUB 시스템 처리 클래스
* @author 김형식
* @create 2026.09.01
* <pre>
* ---------- 개정이력 ----------
* 수정일 수정자 수정내용
* ---------- -------- ---------------------------
* 2026.09.01 김형식 최초생성
*
* </pre>
*/
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;

View File

@@ -1,5 +1,20 @@
package io.shinhanlife.dap.biz.mcp.tool.service;
/**
* @package io.shinhanlife.dap.biz.mcp.tool.service
* @className BalanceService
* @description AX HUB 시스템 처리 클래스
* @author 김형식
* @create 2026.09.01
* <pre>
* ---------- 개정이력 ----------
* 수정일 수정자 수정내용
* ---------- -------- ---------------------------
* 2026.09.01 김형식 최초생성
*
* </pre>
*/
import io.shinhanlife.dap.biz.mcp.tool.annotation.McpFunction;
import io.shinhanlife.dap.biz.mcp.tool.annotation.McpTool;
import io.shinhanlife.dap.biz.mcp.tool.dto.BalanceReq;