龚焕茏
2024-03-06 bb77e44761f61ec08e257fecc5143859eb14bd30
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> {
}