Commit 12d8adfb3ade8379b90139336a530b07949d3534
1 parent
4d17ba07
fix: update config
Showing
2 changed files
with
23 additions
and
1 deletions
ruoyi-admin/src/main/java/com/ruoyi/report/ReportController.java
0 → 100644
| 1 | +package com.ruoyi.report; | ||
| 2 | + | ||
| 3 | +import io.swagger.annotations.Api; | ||
| 4 | +import io.swagger.annotations.ApiOperation; | ||
| 5 | +import org.springframework.web.bind.annotation.GetMapping; | ||
| 6 | +import org.springframework.web.bind.annotation.RequestMapping; | ||
| 7 | +import org.springframework.web.bind.annotation.RestController; | ||
| 8 | + | ||
| 9 | +/** | ||
| 10 | + * @author 20412 | ||
| 11 | + */ | ||
| 12 | +@RestController | ||
| 13 | +@RequestMapping("/report") | ||
| 14 | +@Api(tags = "报表管理") | ||
| 15 | +public class ReportController { | ||
| 16 | + | ||
| 17 | + @ApiOperation("签到报表集合查询") | ||
| 18 | + @GetMapping("/list" ) | ||
| 19 | + public String getList() { | ||
| 20 | + return "暂未开发"; | ||
| 21 | + } | ||
| 22 | +} |
ruoyi-admin/src/main/java/com/ruoyi/web/core/config/SwaggerConfig.java
| @@ -113,7 +113,7 @@ public class SwaggerConfig | @@ -113,7 +113,7 @@ public class SwaggerConfig | ||
| 113 | // 用ApiInfoBuilder进行定制 | 113 | // 用ApiInfoBuilder进行定制 |
| 114 | return new ApiInfoBuilder() | 114 | return new ApiInfoBuilder() |
| 115 | // 设置标题 | 115 | // 设置标题 |
| 116 | - .title("标题:飞奥一体机接口文档") | 116 | + .title("标题:酒精测试一体机接口文档") |
| 117 | // 描述 | 117 | // 描述 |
| 118 | .description("描述:用于开发人员调试") | 118 | .description("描述:用于开发人员调试") |
| 119 | // 作者信息 | 119 | // 作者信息 |