changed format

This commit is contained in:
z
2025-05-12 11:50:08 +09:00
parent f335896f4f
commit 032424e7c6
24 changed files with 139 additions and 108 deletions

View File

@ -9,7 +9,6 @@ import org.springframework.web.bind.annotation.RequestParam;
import co.jp.app.service.PetService;
@Controller
public class PetController {
@ -19,7 +18,7 @@ public class PetController {
@GetMapping("/api/dogs/pet")
public String getListByEntities(@RequestParam List<Integer> id) {
service.getPetByID(id);
service.getPetByID(id);
return "pet";
}
}