龚焕茏
2024-03-05 a41b5ec59dce472385ad33094fb72691dad127ca
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> {
}