Skip to content

Commit

Permalink
[feat] OrderRepository
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-KoKo committed Aug 15, 2024
1 parent 51d916f commit f31e7e9
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package camp.woowak.lab.order.repository;

import org.springframework.data.jpa.repository.JpaRepository;

import camp.woowak.lab.order.domain.Order;

public interface OrderRepository extends JpaRepository<Order, Long> {
}

0 comments on commit f31e7e9

Please sign in to comment.