|
@@ -2,6 +2,10 @@ package com.ozs.web.controller.system;
|
|
|
|
|
|
import java.util.List;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
+
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiImplicitParam;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
@@ -28,6 +32,7 @@ import com.ozs.system.service.ISysConfigService;
|
|
|
*
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
+@Api("信息操作处理")
|
|
|
@RestController
|
|
|
@RequestMapping("/system/config")
|
|
|
public class SysConfigController extends BaseController
|
|
@@ -40,6 +45,7 @@ public class SysConfigController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('system:config:list')")
|
|
|
@GetMapping("/list")
|
|
|
+ @ApiOperation("获取参数配置列表")
|
|
|
public TableDataInfo list(SysConfig config)
|
|
|
{
|
|
|
startPage();
|
|
@@ -50,6 +56,7 @@ public class SysConfigController extends BaseController
|
|
|
@Log(title = "参数管理", businessType = BusinessType.EXPORT)
|
|
|
@PreAuthorize("@ss.hasPermi('system:config:export')")
|
|
|
@PostMapping("/export")
|
|
|
+ @ApiOperation("参数导出")
|
|
|
public void export(HttpServletResponse response, SysConfig config)
|
|
|
{
|
|
|
List<SysConfig> list = configService.selectConfigList(config);
|
|
@@ -62,6 +69,8 @@ public class SysConfigController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('system:config:query')")
|
|
|
@GetMapping(value = "/{configId}")
|
|
|
+ @ApiOperation("根据参数编号获取详细信息")
|
|
|
+ @ApiImplicitParam(name = "configId", value = "参数ID", required = true, dataType = "Long", paramType = "path", dataTypeClass = Long.class)
|
|
|
public AjaxResult getInfo(@PathVariable Long configId)
|
|
|
{
|
|
|
return success(configService.selectConfigById(configId));
|
|
@@ -71,6 +80,8 @@ public class SysConfigController extends BaseController
|
|
|
* 根据参数键名查询参数值
|
|
|
*/
|
|
|
@GetMapping(value = "/configKey/{configKey}")
|
|
|
+ @ApiOperation("根据参数键名查询参数值")
|
|
|
+ @ApiImplicitParam(name = "configKey", value = "参数键名", required = true, dataType = "String", paramType = "path", dataTypeClass = String.class)
|
|
|
public AjaxResult getConfigKey(@PathVariable String configKey)
|
|
|
{
|
|
|
return success(configService.selectConfigByKey(configKey));
|
|
@@ -82,6 +93,7 @@ public class SysConfigController extends BaseController
|
|
|
@PreAuthorize("@ss.hasPermi('system:config:add')")
|
|
|
@Log(title = "参数管理", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
+ @ApiOperation("新增参数配置")
|
|
|
public AjaxResult add(@Validated @RequestBody SysConfig config)
|
|
|
{
|
|
|
if (UserConstants.NOT_UNIQUE.equals(configService.checkConfigKeyUnique(config)))
|
|
@@ -98,6 +110,7 @@ public class SysConfigController extends BaseController
|
|
|
@PreAuthorize("@ss.hasPermi('system:config:edit')")
|
|
|
@Log(title = "参数管理", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
+ @ApiOperation("修改参数配置")
|
|
|
public AjaxResult edit(@Validated @RequestBody SysConfig config)
|
|
|
{
|
|
|
if (UserConstants.NOT_UNIQUE.equals(configService.checkConfigKeyUnique(config)))
|
|
@@ -114,6 +127,8 @@ public class SysConfigController extends BaseController
|
|
|
@PreAuthorize("@ss.hasPermi('system:config:remove')")
|
|
|
@Log(title = "参数管理", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{configIds}")
|
|
|
+ @ApiOperation("删除参数配置")
|
|
|
+ @ApiImplicitParam(name = "configIds", value = "参数id集合", required = true, dataType = "Long[]", paramType = "path", dataTypeClass = Long.class)
|
|
|
public AjaxResult remove(@PathVariable Long[] configIds)
|
|
|
{
|
|
|
configService.deleteConfigByIds(configIds);
|
|
@@ -126,6 +141,7 @@ public class SysConfigController extends BaseController
|
|
|
@PreAuthorize("@ss.hasPermi('system:config:remove')")
|
|
|
@Log(title = "参数管理", businessType = BusinessType.CLEAN)
|
|
|
@DeleteMapping("/refreshCache")
|
|
|
+ @ApiOperation("刷新参数缓存")
|
|
|
public AjaxResult refreshCache()
|
|
|
{
|
|
|
configService.resetConfigCache();
|