11 lines
No EOL
277 B
Java
11 lines
No EOL
277 B
Java
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) {
|
|
// 거래 처리 로직
|
|
}
|
|
} |