Commit 735df5a935f4e34e278ab06fcea4197d6466d960
1 parent
a44adcab
docs: 修正日志管理控制器mapping的错误描述
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/genersoft/iot/vmp/vmanager/log/LogController.java
| ... | ... | @@ -42,7 +42,7 @@ public class LogController { |
| 42 | 42 | * @return |
| 43 | 43 | */ |
| 44 | 44 | @GetMapping("/all") |
| 45 | - @Operation(summary = "分页查询报警") | |
| 45 | + @Operation(summary = "分页查询日志") | |
| 46 | 46 | @Parameter(name = "query", description = "查询内容", required = true) |
| 47 | 47 | @Parameter(name = "page", description = "当前页", required = true) |
| 48 | 48 | @Parameter(name = "count", description = "每页查询数量", required = true) |
| ... | ... | @@ -84,7 +84,7 @@ public class LogController { |
| 84 | 84 | * 清空日志 |
| 85 | 85 | * |
| 86 | 86 | */ |
| 87 | - @Operation(summary = "停止视频回放") | |
| 87 | + @Operation(summary = "清空日志") | |
| 88 | 88 | @DeleteMapping("/clear") |
| 89 | 89 | public void clear() { |
| 90 | 90 | logService.clear(); | ... | ... |