From 533ec7c653c83dd93216223703018a7e381ce6e6 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 13:30:10 +0000 Subject: [PATCH] =?UTF-8?q?Spring=20Boot/Spring=20Batch=20=EB=AA=A9?= =?UTF-8?q?=ED=91=9C=20=EC=95=84=ED=82=A4=ED=85=8D=EC=B2=98=20=EC=A0=95?= =?UTF-8?q?=EC=9D=98=20(BAIS-SPRING-ARC-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/demo/service/TransactionService.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/com/example/demo/service/TransactionService.java diff --git a/src/main/java/com/example/demo/service/TransactionService.java b/src/main/java/com/example/demo/service/TransactionService.java new file mode 100644 index 0000000..d72cdcc --- /dev/null +++ b/src/main/java/com/example/demo/service/TransactionService.java @@ -0,0 +1,11 @@ +package com.example.demo.service; + +import org.springframework.stereotype.Service; +import com.example.demo.dto.TransactionDTO; + +@Service +public class TransactionService { + public void processTransaction(TransactionDTO transactionDTO) { + // 거래 처리 로직 + } +} \ No newline at end of file