girlFindOne报错
@GetMapping(value = "/girls/{id}")
public Girl girlFindOne(@PathVariable("id") Integer id) {
return girlRepository.findOne(id);
}
Inferred type 'S' for type parameter 'S' is not within its bound; should extends com.example.demo.Girl