Merge pull request #1866 from dataease/pr@v1.8@refactor_proxy_panel_return

refactor: 分享代理方法返回值
This commit is contained in:
fit2cloud-chenyw
2022-03-02 12:37:49 +08:00
committed by GitHub

View File

@@ -80,7 +80,7 @@ public class PanelGroupController {
@DePermissionProxy(paramIndex = 1)
@DePermission(type = DePermissionType.PANEL, level = ResourceAuthLevel.PANNEL_LEVEL_VIEW)
@PostMapping("/proxy/findOne/{id}")
public PanelGroupWithBLOBs proxyFindOne(@PathVariable String id, @RequestBody PermissionProxy proxy)
public PanelGroupDTO proxyFindOne(@PathVariable String id, @RequestBody PermissionProxy proxy)
throws Exception {
return panelGroupService.findOne(id);
}