分销配置报错修复

This commit is contained in:
张松
2025-11-05 13:59:42 +08:00
parent 2d60b5823e
commit dafc70aea4
2 changed files with 9 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ public class MenuController {
@SaAdminCheckPermission(value = "menu:list", name = "菜单列表")
@GetMapping("/list")
public CzgResult<List<MenuVO>> all(String title, String startTime, String endTime) {
return CzgResult.success(menuService.getAll(title, startTime, endTime));
return CzgResult.success(menuService.getAll(title, startTime, endTime));
}
/**