package
com.imooc.springbootlearn.mapper;
import
com.imooc.springbootlearn.pojo.Student;
import
org.apache.ibatis.annotations.Select;
import
org.springframework.stereotype.Repository;
import
org.apache.ibatis.annotations.Mapper;
@Repository
@Mapper
public
interface
StudentMapper {
@Select
(
"select from student where id = #{id}"
)
Student findById(Integer id);
}
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧