【fix sonar】 SysCategoryController.java 文件

This commit is contained in:
tianwenbo
2023-03-06 09:10:13 +08:00
parent c11c9d5980
commit 5b1b0c2502
@@ -457,7 +457,7 @@ public class SysCategoryController {
* @return
*/
@GetMapping("/getChildListBatch")
public Result getChildListBatch(@RequestParam("parentIds") String parentIds) {
public Result<IPage<SysCategory>> getChildListBatch(@RequestParam("parentIds") String parentIds) {
try {
QueryWrapper<SysCategory> queryWrapper = new QueryWrapper<>();
List<String> parentIdList = Arrays.asList(parentIds.split(","));