|
@@ -232,8 +232,8 @@ public class SbInfoController {
|
|
* @return R
|
|
* @return R
|
|
*/
|
|
*/
|
|
@GetMapping("/fill/position/list")
|
|
@GetMapping("/fill/position/list")
|
|
- public R<List<SbInfoVO>> queryList(@RequestParam List<String> ids) {
|
|
|
|
- return new R<>(sbInfoService.getChildSbByIds(ids));
|
|
|
|
|
|
+ public R<List<SbInfoVO>> queryList(SbInfoDTO sbInfoDTO) {
|
|
|
|
+ return new R<>(sbInfoService.getChildSbByIds(sbInfoDTO.getIds()));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|