龚焕茏
2024-03-04 0a71321f86d46ac4a8335a0c38a493fd62664c25
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> {
}