|
@@ -684,7 +684,8 @@ public class SbInfoController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/get/synchronous/sb")
|
|
|
- public R getSynchronousSb(List<String> spareIds, @RequestParam(defaultValue = "1") int pageNum, @RequestParam(defaultValue = "20") int pageSize) {
|
|
|
+ public R getSynchronousSb(SbInfoDTO dto, @RequestParam(defaultValue = "1") int pageNum, @RequestParam(defaultValue = "20") int pageSize) {
|
|
|
+ List<String> spareIds = dto.getSpareIds();
|
|
|
return new R(sbInfoService.getSynchronousSb(spareIds,pageNum,pageSize));
|
|
|
}
|
|
|
|