| | |
| | | /** |
| | | * 获取项目组管理列表 |
| | | */ |
| | | @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) { |
| | |
| | | /** |
| | | * 添加项目组管理 |
| | | */ |
| | | @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") |
| | |
| | | /** |
| | | * 修改项目组 |
| | | */ |
| | | @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") |
| | |
| | | /** |
| | | * 查看项目组详情 |
| | | */ |
| | | @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) { |
| | |
| | | /** |
| | | * 删除项目组 |
| | | */ |
| | | @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") |
| | |
| | | /** |
| | | * 批量删除项目组 |
| | | */ |
| | | @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") |
| | |
| | | /** |
| | | * 修改项目组 |
| | | */ |
| | | @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") |