From 6ae35089a05b58dc31c243b9bb4f6a80b20c3a7b Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期五, 23 五月 2025 17:44:42 +0800 Subject: [PATCH] 修改接口 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TProjectTeamController.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TProjectTeamController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TProjectTeamController.java index df95aac..2d269e3 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TProjectTeamController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TProjectTeamController.java @@ -54,7 +54,7 @@ /** * 获取项目组管理列表 */ - @PreAuthorize("@ss.hasPermi('system:projectTeam:list')") + //@PreAuthorize("@ss.hasPermi('system:projectTeam:list')") @ApiOperation(value = "获取项目组分页列表",response = TProjectTeamQuery.class) @PostMapping(value = "/api/t-project-team/pageList") public R<PageInfo<TProjectTeamVO>> pageList(@RequestBody String param) { @@ -66,7 +66,7 @@ /** * 添加项目组管理 */ - @PreAuthorize("@ss.hasPermi('system:projectTeam:add')") + //@PreAuthorize("@ss.hasPermi('system:projectTeam:add')") @Log(title = "项目组信息-新增项目组", businessType = BusinessType.INSERT) @ApiOperation(value = "添加项目组",response = TProjectTeamDTO.class) @PostMapping(value = "/api/t-project-team/add") @@ -85,7 +85,7 @@ /** * 修改项目组 */ - @PreAuthorize("@ss.hasPermi('system:projectTeam:edit')") + //@PreAuthorize("@ss.hasPermi('system:projectTeam:edit')") @Log(title = "项目组信息-修改项目组", businessType = BusinessType.UPDATE) @ApiOperation(value = "修改项目组") @PostMapping(value = "/api/t-project-team/update") @@ -106,7 +106,7 @@ /** * 查看项目组详情 */ - @PreAuthorize("@ss.hasPermi('system:projectTeam:detail')") + //@PreAuthorize("@ss.hasPermi('system:projectTeam:detail')") @ApiOperation(value = "查看项目组详情") @GetMapping(value = "/open/t-project-team/getDetailById") public R<TProjectTeamVO> getDetailById(@RequestParam String id) { @@ -130,7 +130,7 @@ /** * 删除项目组 */ - @PreAuthorize("@ss.hasPermi('system:projectTeam:delete')") + //@PreAuthorize("@ss.hasPermi('system:projectTeam:delete')") @Log(title = "项目组信息-删除项目组", businessType = BusinessType.DELETE) @ApiOperation(value = "删除项目组") @DeleteMapping(value = "/open/t-project-team/deleteById") @@ -143,7 +143,7 @@ /** * 批量删除项目组 */ - @PreAuthorize("@ss.hasPermi('system:projectTeam:delete')") + //@PreAuthorize("@ss.hasPermi('system:projectTeam:delete')") @Log(title = "项目组信息-删除项目组", businessType = BusinessType.DELETE) @ApiOperation(value = "批量删除项目组") @DeleteMapping(value = "/open/t-project-team/deleteByIds") @@ -156,7 +156,7 @@ /** * 修改项目组 */ - @PreAuthorize("@ss.hasPermi('system:projectTeam:upAndDown')") + //@PreAuthorize("@ss.hasPermi('system:projectTeam:upAndDown')") @Log(title = "项目组信息-修改项目组状态", businessType = BusinessType.UPDATE) @ApiOperation(value = "修改项目组状态",response = UpAndDownDTO.class) @PostMapping(value = "/api/t-project-team/upAndDown") -- Gitblit v1.7.1