fuliqi
2024-02-05 5589258324faa6d9e1ec7e5226e98dc2e1a18adc
1
2
3
4
5
6
7
8
9
10
package org.dromara.demo.service;
 
import org.dromara.demo.domain.Student;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
 
@Repository
public interface IStudentRepository extends CrudRepository<Student,Long> {
}