From 7babbae807d363e7dc5c027649aa8154b3d8d593 Mon Sep 17 00:00:00 2001 From: pb8qzmito <13100778657@163.com> Date: Mon, 7 Oct 2024 12:23:34 +0800 Subject: [PATCH] ADD file via upload --- StudentRepository.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 StudentRepository.java diff --git a/StudentRepository.java b/StudentRepository.java new file mode 100644 index 0000000..719b8fb --- /dev/null +++ b/StudentRepository.java @@ -0,0 +1,9 @@ +package com.example.classroomattendance.repository; + +import com.example.classroomattendance.model.Student; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface StudentRepository extends JpaRepository { +} \ No newline at end of file