From 6328436cab544914791e09ba662eb46c8771b0d0 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期三, 11 十二月 2024 17:54:26 +0800
Subject: [PATCH] 合并代码

---
 ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/SystemConfigController.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/SystemConfigController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/SystemConfigController.java
index 21a404e..7f4830b 100644
--- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/SystemConfigController.java
+++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/SystemConfigController.java
@@ -28,7 +28,7 @@
     @Resource
     private SystemConfigService systemConfigService;
     @PostMapping("/index/add")
-	@ApiOperation(value = "添加", tags = {"后台-广告管理-首页配置"})
+	@ApiOperation(value = "添加", tags = {"后台管理-广告管理-首页配置"})
 	public R add(@RequestBody IndexConfigSetDto indexConfigSetDto){
         //先删除type=2的数据
         List<SystemConfig> list = systemConfigService.lambdaQuery().eq(SystemConfig::getType, 2).list();
@@ -40,7 +40,7 @@
         return R.ok();
       }
     @GetMapping("/index/detail")
-	@ApiOperation(value = "宣传图片-公司简介", tags = {"后台-广告管理-首页配置","小程序-首页"})
+	@ApiOperation(value = "宣传图片-公司简介", tags = {"后台管理-广告管理-首页配置","小程序-首页"})
 	public R<IndexConfigSetDto> detail(){
         SystemConfig one = systemConfigService.lambdaQuery().eq(SystemConfig::getType, 2).one();
         if (one==null){
@@ -77,7 +77,7 @@
     }
 
     @PostMapping("/startPage/add")
-    @ApiOperation(value = "添加", tags = {"后台-广告管理-启动页管理"})
+    @ApiOperation(value = "添加", tags = {"后台管理-广告管理-启动页管理"})
     public R startPageadd(@RequestBody StartPageSetDto startPageSetDto){
         //先删除type=1的数据
         List<SystemConfig> list = systemConfigService.lambdaQuery().eq(SystemConfig::getType, 1).list();

--
Gitblit v1.7.1