diff --git a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/other/presentation/MciTestController.java b/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/other/presentation/MciTestController.java deleted file mode 100644 index 8cf197e..0000000 --- a/dap-tool-other/src/main/java/io/shinhanlife/dap/mcc/other/presentation/MciTestController.java +++ /dev/null @@ -1,63 +0,0 @@ -package io.shinhanlife.dap.mcc.other.presentation; - -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.ShinhanCommonHeaderDto; -import lombok.Data; -import lombok.RequiredArgsConstructor; -import jakarta.servlet.http.HttpServletRequest; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -/** - * @package io.shinhanlife.dap.mcc.other.presentation - * @className MciTestController - * @description AX HUB 시스템 처리 클래스 - * @author 김형식 - * @create 2026.09.01 - *
- * ---------- 개정이력 ---------- - * 수정일 수정자 수정내용 - * ---------- -------- --------------------------- - * 2026.09.01 김형식 최초생성 - * - *- */ -@RestController -@RequestMapping("/api/test/mci") -@RequiredArgsConstructor -public class MciTestController { - - private final ShinhanMciSender shinhanMciSender; - - @Data - public static class SampleBizData { - private String customerId; - private String amount; - private String message; - } - - @PostMapping("/send") - public String testSendMci(HttpServletRequest request, @RequestBody SampleBizData bizData) { - try { - MciRequestWrapper