ADD file via upload

main
p26ct9nwj 4 months ago
parent c01aae12af
commit 29aec9bec2

@ -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<Student, Long> {
}
Loading…
Cancel
Save