Spring Boot/Spring Batch 목표 아키텍처 정의 #4
1 changed files with 7 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
package com.example.demo.repository;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import com.example.demo.model.Transaction;
|
||||
|
||||
public interface TransactionRepository extends JpaRepository<Transaction, Long> {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue