注释修改
正在显示
2 个修改的文件
包含
4 行增加
和
13 行删除
... | @@ -9,6 +9,7 @@ import java.util.List; | ... | @@ -9,6 +9,7 @@ import java.util.List; |
9 | import java.util.Map; | 9 | import java.util.Map; |
10 | import java.util.Set; | 10 | import java.util.Set; |
11 | 11 | ||
12 | import io.swagger.annotations.Api; | ||
12 | import org.apache.commons.lang.StringUtils; | 13 | import org.apache.commons.lang.StringUtils; |
13 | import org.springframework.beans.factory.annotation.Autowired; | 14 | import org.springframework.beans.factory.annotation.Autowired; |
14 | import org.springframework.http.HttpMethod; | 15 | import org.springframework.http.HttpMethod; |
... | @@ -35,6 +36,7 @@ import io.swagger.annotations.ApiOperation; | ... | @@ -35,6 +36,7 @@ import io.swagger.annotations.ApiOperation; |
35 | * 项目采集点初始化脚本 | 36 | * 项目采集点初始化脚本 |
36 | * 2021年8月17日 | 37 | * 2021年8月17日 |
37 | */ | 38 | */ |
39 | @Api(tags="项目采集点初始化脚本") | ||
38 | @RestController | 40 | @RestController |
39 | @RequestMapping("/v1/monitor/") | 41 | @RequestMapping("/v1/monitor/") |
40 | public class MonitorIndexConfigController { | 42 | public class MonitorIndexConfigController { |
... | @@ -44,15 +46,10 @@ public class MonitorIndexConfigController { | ... | @@ -44,15 +46,10 @@ public class MonitorIndexConfigController { |
44 | private RestTemplate restTemplate; | 46 | private RestTemplate restTemplate; |
45 | 47 | ||
46 | /** | 48 | /** |
47 | * <pre> | ||
48 | * 洪城项目采集点初始化脚本 | 49 | * 洪城项目采集点初始化脚本 |
49 | * </pre> | ||
50 | * @return | ||
51 | * @author Li Yuanyuan, 2020年6月1日 下午2:21:58 | ||
52 | * @throws Exception | ||
53 | */ | 50 | */ |
54 | @AutoLog(value = "洪城项目采集点初始化脚本") | 51 | @AutoLog(value = "项目采集点初始化脚本") |
55 | @ApiOperation(value="洪城项目采集点初始化脚本", notes="洪城项目采集点初始化脚本") | 52 | @ApiOperation(value="项目采集点初始化脚本", notes="项目采集点初始化脚本") |
56 | @GetMapping(value = "/configIndex") | 53 | @GetMapping(value = "/configIndex") |
57 | public Result<String> configIndex(String filepath,String factoryId,String boxName) throws Exception { | 54 | public Result<String> configIndex(String filepath,String factoryId,String boxName) throws Exception { |
58 | Result<String> result = new Result<String>(); | 55 | Result<String> result = new Result<String>(); | ... | ... |
... | @@ -34,10 +34,4 @@ public class FmApplication { | ... | @@ -34,10 +34,4 @@ public class FmApplication { |
34 | "----------------------------------------------------------"); | 34 | "----------------------------------------------------------"); |
35 | } | 35 | } |
36 | 36 | ||
37 | @Configuration | ||
38 | @Profile("dev") | ||
39 | @ComponentScan(lazyInit = true) | ||
40 | static class LocalConfig { | ||
41 | } | ||
42 | |||
43 | } | 37 | } |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
请 注册 或 登录 后发表评论