幻雨堂
2024-02-29 11e370b2ed7a7004c4a4b4d46031785bc6a7d925
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> {
}