Skip to content

Commit 55fbbb4

Browse files
committed
fix: Enhance Repositories🫸🌀✏️📗🐧🐳⬆
1 parent afc7f23 commit 55fbbb4

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package id.my.hendisantika.books.repository;
2+
3+
import id.my.hendisantika.books.entity.BookInstance;
4+
import org.springframework.data.jpa.repository.JpaRepository;
5+
6+
/**
7+
* Created by IntelliJ IDEA.
8+
* Project : books
9+
* User: hendisantika
10+
* Email: hendisantika@gmail.com
11+
* Telegram : @hendisantika34
12+
* Date: 01/11/24
13+
* Time: 08.44
14+
* To change this template use File | Settings | File Templates.
15+
*/
16+
public interface BookInstanceRepository extends JpaRepository<BookInstance, Long> {
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package id.my.hendisantika.books.repository;
2+
3+
import id.my.hendisantika.books.entity.Checkout;
4+
import org.springframework.data.jpa.repository.JpaRepository;
5+
6+
/**
7+
* Created by IntelliJ IDEA.
8+
* Project : books
9+
* User: hendisantika
10+
* Email: hendisantika@gmail.com
11+
* Telegram : @hendisantika34
12+
* Date: 01/11/24
13+
* Time: 08.44
14+
* To change this template use File | Settings | File Templates.
15+
*/
16+
public interface CheckoutRepository extends JpaRepository<Checkout, Long> {
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package id.my.hendisantika.books.repository;
2+
3+
import id.my.hendisantika.books.entity.Users;
4+
import org.springframework.data.jpa.repository.JpaRepository;
5+
6+
/**
7+
* Created by IntelliJ IDEA.
8+
* Project : books
9+
* User: hendisantika
10+
* Email: hendisantika@gmail.com
11+
* Telegram : @hendisantika34
12+
* Date: 01/11/24
13+
* Time: 08.40
14+
* To change this template use File | Settings | File Templates.
15+
*/
16+
public interface UserRepository extends JpaRepository<Users, Long> {
17+
}

0 commit comments

Comments
 (0)