File tree Expand file tree Collapse file tree 3 files changed +51
-0
lines changed
src/main/java/id/my/hendisantika/books/repository Expand file tree Collapse file tree 3 files changed +51
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments