@GetMapping("")
public Map<String, Object> list(
@RequestParam(defaultValue = "1") Integer current,
@RequestParam(defaultValue = "10") Integer pageSize) {
}
@GetMapping("/{id}")
public Map<String, Object> findById(@PathVariable Integer id) {
}
@DeleteMapping("/{id}")
public Map<String, Object> deleteById(@PathVariable Integer id) {
}