| | |
| | | /** |
| | | * 系统公共参数设置详情 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:config:detail')") |
| | | @PreAuthorize("@ss.hasPermi('system:commonParameter')") |
| | | @ApiOperation(value = "查看系统公共参数设置详情") |
| | | @GetMapping(value = "/getDetailById") |
| | | public R<TSysConfig> getDetailById() { |
| | |
| | | /** |
| | | * 修改系统公共参数设置 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:config:update')") |
| | | @PreAuthorize("@ss.hasPermi('system:commonParameter:save')") |
| | | @Log(title = "租户信息-修改系统公共参数设置", businessType = BusinessType.UPDATE) |
| | | @ApiOperation(value = "修改系统公共参数设置") |
| | | @PostMapping(value = "/update") |