-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from djkeh/feature/13-repository
[테스트 데이터 생성기] CH 02. CLIP 11. 데이터베이스: DB 접근용 repository 코드의 작성
- Loading branch information
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/main/java/uno/fastcampus/testdata/repository/MockDataRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> { | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/uno/fastcampus/testdata/repository/SchemaFieldRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> { | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/uno/fastcampus/testdata/repository/TableSchemaRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> { | ||
} |