Browse Source

维修完善

408249787 2 years ago
parent
commit
d8b644eaa9

+ 2 - 2
platform-rest/src/main/java/com/platform/rest/controller/sb/SbInfoController.java

@@ -232,8 +232,8 @@ public class SbInfoController {
      * @return R
      */
     @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()));
     }