-
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.
- Loading branch information
Showing
4 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/main/kotlin/org/store/clothstar/product/repository/ItemRepository.kt
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 org.store.clothstar.product.repository | ||
|
||
import org.springframework.data.jpa.repository.JpaRepository | ||
import org.store.clothstar.product.domain.entity.Item | ||
|
||
interface ItemRepository : JpaRepository<Item, Long> { | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/kotlin/org/store/clothstar/product/repository/OptionValueRepository.kt
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,8 @@ | ||
package org.store.clothstar.product.repository | ||
|
||
import org.springframework.data.jpa.repository.JpaRepository | ||
import org.store.clothstar.product.domain.entity.OptionValue | ||
|
||
interface OptionValueRepository : JpaRepository<OptionValue, Int> { | ||
|
||
} |
8 changes: 8 additions & 0 deletions
8
src/main/kotlin/org/store/clothstar/product/repository/ProductOptionRepository.kt
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,8 @@ | ||
package org.store.clothstar.product.repository | ||
|
||
import org.springframework.data.jpa.repository.JpaRepository | ||
import org.store.clothstar.product.domain.entity.ProductOption | ||
|
||
interface ProductOptionRepository : JpaRepository<ProductOption, Long> { | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/org/store/clothstar/product/repository/ProductRepository.kt
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,10 @@ | ||
package org.store.clothstar.product.repository | ||
|
||
import org.springframework.data.jpa.repository.JpaRepository | ||
import org.springframework.stereotype.Repository | ||
import org.store.clothstar.product.domain.entity.Product | ||
|
||
@Repository | ||
interface ProductRepository : JpaRepository<Product, Long> { | ||
|
||
} |