Skip to content

Commit

Permalink
Merge pull request #47 from djkeh/feature/13-repository
Browse files Browse the repository at this point in the history
[테스트 데이터 생성기] CH 02. CLIP 11. 데이터베이스: DB 접근용 repository 코드의 작성
  • Loading branch information
djkeh authored Jul 29, 2024
2 parents 4ee21b9 + d2fe182 commit 686e1bf
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package uno.fastcampus.testdata.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import uno.fastcampus.testdata.domain.MockData;

public interface MockDataRepository extends JpaRepository<MockData, Long> {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package uno.fastcampus.testdata.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import uno.fastcampus.testdata.domain.SchemaField;

public interface SchemaFieldRepository extends JpaRepository<SchemaField, Long> {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package uno.fastcampus.testdata.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import uno.fastcampus.testdata.domain.TableSchema;

public interface TableSchemaRepository extends JpaRepository<TableSchema, Long> {
}

0 comments on commit 686e1bf

Please sign in to comment.